lpsolver 0.1.0 → 0.2.1

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 (1165) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +1 -0
  3. data/README.md +104 -26
  4. data/ext/lpsolver/Makefile +269 -0
  5. data/ext/lpsolver/ext.c +353 -0
  6. data/ext/lpsolver/ext.o +0 -0
  7. data/ext/lpsolver/extconf.rb +79 -0
  8. data/ext/lpsolver/native.so +0 -0
  9. data/ext/lpsolver-highs/AUTHORS +7 -0
  10. data/ext/lpsolver-highs/BUILD.bazel +243 -0
  11. data/ext/lpsolver-highs/CITATION.cff +29 -0
  12. data/ext/lpsolver-highs/CMakeCache.txt +406 -0
  13. data/ext/lpsolver-highs/CMakeFiles/3.31.4/CMakeCCompiler.cmake +81 -0
  14. data/ext/lpsolver-highs/CMakeFiles/3.31.4/CMakeCXXCompiler.cmake +101 -0
  15. data/ext/lpsolver-highs/CMakeFiles/3.31.4/CMakeDetermineCompilerABI_C.bin +0 -0
  16. data/ext/lpsolver-highs/CMakeFiles/3.31.4/CMakeDetermineCompilerABI_CXX.bin +0 -0
  17. data/ext/lpsolver-highs/CMakeFiles/3.31.4/CMakeSystem.cmake +15 -0
  18. data/ext/lpsolver-highs/CMakeFiles/3.31.4/CompilerIdC/CMakeCCompilerId.c +904 -0
  19. data/ext/lpsolver-highs/CMakeFiles/3.31.4/CompilerIdC/a.out +0 -0
  20. data/ext/lpsolver-highs/CMakeFiles/3.31.4/CompilerIdCXX/CMakeCXXCompilerId.cpp +919 -0
  21. data/ext/lpsolver-highs/CMakeFiles/3.31.4/CompilerIdCXX/a.out +0 -0
  22. data/ext/lpsolver-highs/CMakeFiles/CMakeConfigureLog.yaml +576 -0
  23. data/ext/lpsolver-highs/CMakeFiles/cmake.check_cache +1 -0
  24. data/ext/lpsolver-highs/CMakeLists.txt +983 -0
  25. data/ext/lpsolver-highs/CODE_OF_CONDUCT.md +128 -0
  26. data/ext/lpsolver-highs/CONTRIBUTING.md +31 -0
  27. data/ext/lpsolver-highs/FEATURES.md +61 -0
  28. data/ext/lpsolver-highs/LICENSE.txt +21 -0
  29. data/ext/lpsolver-highs/MODULE.bazel +38 -0
  30. data/ext/lpsolver-highs/README.md +281 -0
  31. data/ext/lpsolver-highs/THIRD_PARTY_NOTICES.md +78 -0
  32. data/ext/lpsolver-highs/Version.txt +4 -0
  33. data/ext/lpsolver-highs/WORKSPACE +33 -0
  34. data/ext/lpsolver-highs/app/CMakeLists.txt +110 -0
  35. data/ext/lpsolver-highs/app/HighsRuntimeOptions.h +292 -0
  36. data/ext/lpsolver-highs/app/RunHighs.cpp +147 -0
  37. data/ext/lpsolver-highs/app/highs_webdemo_shell.html +73 -0
  38. data/ext/lpsolver-highs/build/bin/highs +0 -0
  39. data/ext/lpsolver-highs/build/include/highs/HConfig.h +22 -0
  40. data/ext/lpsolver-highs/build/include/highs/Highs.h +1812 -0
  41. data/ext/lpsolver-highs/build/include/highs/interfaces/highs_c_api.h +2651 -0
  42. data/ext/lpsolver-highs/build/include/highs/io/Filereader.h +45 -0
  43. data/ext/lpsolver-highs/build/include/highs/io/FilereaderLp.h +49 -0
  44. data/ext/lpsolver-highs/build/include/highs/io/FilereaderMps.h +27 -0
  45. data/ext/lpsolver-highs/build/include/highs/io/HMPSIO.h +78 -0
  46. data/ext/lpsolver-highs/build/include/highs/io/HMpsFF.h +245 -0
  47. data/ext/lpsolver-highs/build/include/highs/io/HighsIO.h +118 -0
  48. data/ext/lpsolver-highs/build/include/highs/io/LoadOptions.h +24 -0
  49. data/ext/lpsolver-highs/build/include/highs/io/filereaderlp/builder.hpp +25 -0
  50. data/ext/lpsolver-highs/build/include/highs/io/filereaderlp/def.hpp +19 -0
  51. data/ext/lpsolver-highs/build/include/highs/io/filereaderlp/model.hpp +68 -0
  52. data/ext/lpsolver-highs/build/include/highs/io/filereaderlp/reader.hpp +10 -0
  53. data/ext/lpsolver-highs/build/include/highs/ipm/IpxSolution.h +32 -0
  54. data/ext/lpsolver-highs/build/include/highs/ipm/IpxWrapper.h +106 -0
  55. data/ext/lpsolver-highs/build/include/highs/ipm/basiclu/basiclu.h +161 -0
  56. data/ext/lpsolver-highs/build/include/highs/ipm/basiclu/basiclu_factorize.h +247 -0
  57. data/ext/lpsolver-highs/build/include/highs/ipm/basiclu/basiclu_get_factors.h +108 -0
  58. data/ext/lpsolver-highs/build/include/highs/ipm/basiclu/basiclu_initialize.h +119 -0
  59. data/ext/lpsolver-highs/build/include/highs/ipm/basiclu/basiclu_obj_factorize.h +34 -0
  60. data/ext/lpsolver-highs/build/include/highs/ipm/basiclu/basiclu_obj_free.h +19 -0
  61. data/ext/lpsolver-highs/build/include/highs/ipm/basiclu/basiclu_obj_get_factors.h +34 -0
  62. data/ext/lpsolver-highs/build/include/highs/ipm/basiclu/basiclu_obj_initialize.h +46 -0
  63. data/ext/lpsolver-highs/build/include/highs/ipm/basiclu/basiclu_obj_solve_dense.h +29 -0
  64. data/ext/lpsolver-highs/build/include/highs/ipm/basiclu/basiclu_obj_solve_for_update.h +42 -0
  65. data/ext/lpsolver-highs/build/include/highs/ipm/basiclu/basiclu_obj_solve_sparse.h +32 -0
  66. data/ext/lpsolver-highs/build/include/highs/ipm/basiclu/basiclu_obj_update.h +31 -0
  67. data/ext/lpsolver-highs/build/include/highs/ipm/basiclu/basiclu_object.h +30 -0
  68. data/ext/lpsolver-highs/build/include/highs/ipm/basiclu/basiclu_solve_dense.h +75 -0
  69. data/ext/lpsolver-highs/build/include/highs/ipm/basiclu/basiclu_solve_for_update.h +169 -0
  70. data/ext/lpsolver-highs/build/include/highs/ipm/basiclu/basiclu_solve_sparse.h +112 -0
  71. data/ext/lpsolver-highs/build/include/highs/ipm/basiclu/basiclu_update.h +125 -0
  72. data/ext/lpsolver-highs/build/include/highs/ipm/basiclu/lu_def.h +39 -0
  73. data/ext/lpsolver-highs/build/include/highs/ipm/basiclu/lu_file.h +21 -0
  74. data/ext/lpsolver-highs/build/include/highs/ipm/basiclu/lu_internal.h +220 -0
  75. data/ext/lpsolver-highs/build/include/highs/ipm/basiclu/lu_list.h +173 -0
  76. data/ext/lpsolver-highs/build/include/highs/ipm/ipx/basiclu_kernel.h +20 -0
  77. data/ext/lpsolver-highs/build/include/highs/ipm/ipx/basiclu_wrapper.h +47 -0
  78. data/ext/lpsolver-highs/build/include/highs/ipm/ipx/basis.h +350 -0
  79. data/ext/lpsolver-highs/build/include/highs/ipm/ipx/conjugate_residuals.h +74 -0
  80. data/ext/lpsolver-highs/build/include/highs/ipm/ipx/control.h +167 -0
  81. data/ext/lpsolver-highs/build/include/highs/ipm/ipx/crossover.h +157 -0
  82. data/ext/lpsolver-highs/build/include/highs/ipm/ipx/diagonal_precond.h +45 -0
  83. data/ext/lpsolver-highs/build/include/highs/ipm/ipx/forrest_tomlin.h +102 -0
  84. data/ext/lpsolver-highs/build/include/highs/ipm/ipx/guess_basis.h +21 -0
  85. data/ext/lpsolver-highs/build/include/highs/ipm/ipx/indexed_vector.h +113 -0
  86. data/ext/lpsolver-highs/build/include/highs/ipm/ipx/info.h +27 -0
  87. data/ext/lpsolver-highs/build/include/highs/ipm/ipx/ipm.h +94 -0
  88. data/ext/lpsolver-highs/build/include/highs/ipm/ipx/ipx_c.h +47 -0
  89. data/ext/lpsolver-highs/build/include/highs/ipm/ipx/ipx_config.h +9 -0
  90. data/ext/lpsolver-highs/build/include/highs/ipm/ipx/ipx_info.h +111 -0
  91. data/ext/lpsolver-highs/build/include/highs/ipm/ipx/ipx_internal.h +89 -0
  92. data/ext/lpsolver-highs/build/include/highs/ipm/ipx/ipx_parameters.h +76 -0
  93. data/ext/lpsolver-highs/build/include/highs/ipm/ipx/ipx_status.h +57 -0
  94. data/ext/lpsolver-highs/build/include/highs/ipm/ipx/iterate.h +331 -0
  95. data/ext/lpsolver-highs/build/include/highs/ipm/ipx/kkt_solver.h +70 -0
  96. data/ext/lpsolver-highs/build/include/highs/ipm/ipx/kkt_solver_basis.h +66 -0
  97. data/ext/lpsolver-highs/build/include/highs/ipm/ipx/kkt_solver_diag.h +48 -0
  98. data/ext/lpsolver-highs/build/include/highs/ipm/ipx/linear_operator.h +26 -0
  99. data/ext/lpsolver-highs/build/include/highs/ipm/ipx/lp_solver.h +204 -0
  100. data/ext/lpsolver-highs/build/include/highs/ipm/ipx/lu_factorization.h +79 -0
  101. data/ext/lpsolver-highs/build/include/highs/ipm/ipx/lu_update.h +129 -0
  102. data/ext/lpsolver-highs/build/include/highs/ipm/ipx/maxvolume.h +54 -0
  103. data/ext/lpsolver-highs/build/include/highs/ipm/ipx/model.h +413 -0
  104. data/ext/lpsolver-highs/build/include/highs/ipm/ipx/multistream.h +52 -0
  105. data/ext/lpsolver-highs/build/include/highs/ipm/ipx/normal_matrix.h +44 -0
  106. data/ext/lpsolver-highs/build/include/highs/ipm/ipx/power_method.h +44 -0
  107. data/ext/lpsolver-highs/build/include/highs/ipm/ipx/sparse_matrix.h +195 -0
  108. data/ext/lpsolver-highs/build/include/highs/ipm/ipx/sparse_utils.h +58 -0
  109. data/ext/lpsolver-highs/build/include/highs/ipm/ipx/splitted_normal_matrix.h +63 -0
  110. data/ext/lpsolver-highs/build/include/highs/ipm/ipx/starting_basis.h +39 -0
  111. data/ext/lpsolver-highs/build/include/highs/ipm/ipx/symbolic_invert.h +29 -0
  112. data/ext/lpsolver-highs/build/include/highs/ipm/ipx/timer.h +25 -0
  113. data/ext/lpsolver-highs/build/include/highs/ipm/ipx/utils.h +37 -0
  114. data/ext/lpsolver-highs/build/include/highs/lp_data/HConst.h +430 -0
  115. data/ext/lpsolver-highs/build/include/highs/lp_data/HStruct.h +213 -0
  116. data/ext/lpsolver-highs/build/include/highs/lp_data/HighsAnalysis.h +23 -0
  117. data/ext/lpsolver-highs/build/include/highs/lp_data/HighsCallback.h +104 -0
  118. data/ext/lpsolver-highs/build/include/highs/lp_data/HighsCallbackStruct.h +70 -0
  119. data/ext/lpsolver-highs/build/include/highs/lp_data/HighsDebug.h +34 -0
  120. data/ext/lpsolver-highs/build/include/highs/lp_data/HighsIis.h +139 -0
  121. data/ext/lpsolver-highs/build/include/highs/lp_data/HighsInfo.h +421 -0
  122. data/ext/lpsolver-highs/build/include/highs/lp_data/HighsInfoDebug.h +27 -0
  123. data/ext/lpsolver-highs/build/include/highs/lp_data/HighsLp.h +97 -0
  124. data/ext/lpsolver-highs/build/include/highs/lp_data/HighsLpSolverObject.h +47 -0
  125. data/ext/lpsolver-highs/build/include/highs/lp_data/HighsLpUtils.h +330 -0
  126. data/ext/lpsolver-highs/build/include/highs/lp_data/HighsModelUtils.h +129 -0
  127. data/ext/lpsolver-highs/build/include/highs/lp_data/HighsOptions.h +1715 -0
  128. data/ext/lpsolver-highs/build/include/highs/lp_data/HighsRanging.h +43 -0
  129. data/ext/lpsolver-highs/build/include/highs/lp_data/HighsSolution.h +179 -0
  130. data/ext/lpsolver-highs/build/include/highs/lp_data/HighsSolutionDebug.h +87 -0
  131. data/ext/lpsolver-highs/build/include/highs/lp_data/HighsSolve.h +29 -0
  132. data/ext/lpsolver-highs/build/include/highs/lp_data/HighsStatus.h +29 -0
  133. data/ext/lpsolver-highs/build/include/highs/mip/HighsCliqueTable.h +329 -0
  134. data/ext/lpsolver-highs/build/include/highs/mip/HighsConflictPool.h +109 -0
  135. data/ext/lpsolver-highs/build/include/highs/mip/HighsCutGeneration.h +108 -0
  136. data/ext/lpsolver-highs/build/include/highs/mip/HighsCutPool.h +168 -0
  137. data/ext/lpsolver-highs/build/include/highs/mip/HighsDebugSol.h +133 -0
  138. data/ext/lpsolver-highs/build/include/highs/mip/HighsDomain.h +657 -0
  139. data/ext/lpsolver-highs/build/include/highs/mip/HighsDomainChange.h +48 -0
  140. data/ext/lpsolver-highs/build/include/highs/mip/HighsDynamicRowMatrix.h +104 -0
  141. data/ext/lpsolver-highs/build/include/highs/mip/HighsGFkSolve.h +439 -0
  142. data/ext/lpsolver-highs/build/include/highs/mip/HighsImplications.h +194 -0
  143. data/ext/lpsolver-highs/build/include/highs/mip/HighsLpAggregator.h +50 -0
  144. data/ext/lpsolver-highs/build/include/highs/mip/HighsLpRelaxation.h +361 -0
  145. data/ext/lpsolver-highs/build/include/highs/mip/HighsMipAnalysis.h +71 -0
  146. data/ext/lpsolver-highs/build/include/highs/mip/HighsMipSolver.h +159 -0
  147. data/ext/lpsolver-highs/build/include/highs/mip/HighsMipSolverData.h +313 -0
  148. data/ext/lpsolver-highs/build/include/highs/mip/HighsModkSeparator.h +60 -0
  149. data/ext/lpsolver-highs/build/include/highs/mip/HighsNodeQueue.h +312 -0
  150. data/ext/lpsolver-highs/build/include/highs/mip/HighsObjectiveFunction.h +71 -0
  151. data/ext/lpsolver-highs/build/include/highs/mip/HighsPathSeparator.h +39 -0
  152. data/ext/lpsolver-highs/build/include/highs/mip/HighsPrimalHeuristics.h +75 -0
  153. data/ext/lpsolver-highs/build/include/highs/mip/HighsPseudocost.h +366 -0
  154. data/ext/lpsolver-highs/build/include/highs/mip/HighsRedcostFixing.h +42 -0
  155. data/ext/lpsolver-highs/build/include/highs/mip/HighsSearch.h +241 -0
  156. data/ext/lpsolver-highs/build/include/highs/mip/HighsSeparation.h +41 -0
  157. data/ext/lpsolver-highs/build/include/highs/mip/HighsSeparator.h +60 -0
  158. data/ext/lpsolver-highs/build/include/highs/mip/HighsTableauSeparator.h +34 -0
  159. data/ext/lpsolver-highs/build/include/highs/mip/HighsTransformedLp.h +63 -0
  160. data/ext/lpsolver-highs/build/include/highs/mip/MipTimer.h +544 -0
  161. data/ext/lpsolver-highs/build/include/highs/mip/feasibilityjump.hh +800 -0
  162. data/ext/lpsolver-highs/build/include/highs/model/HighsHessian.h +54 -0
  163. data/ext/lpsolver-highs/build/include/highs/model/HighsHessianUtils.h +47 -0
  164. data/ext/lpsolver-highs/build/include/highs/model/HighsModel.h +42 -0
  165. data/ext/lpsolver-highs/build/include/highs/parallel/HighsBinarySemaphore.h +108 -0
  166. data/ext/lpsolver-highs/build/include/highs/parallel/HighsCacheAlign.h +82 -0
  167. data/ext/lpsolver-highs/build/include/highs/parallel/HighsCombinable.h +116 -0
  168. data/ext/lpsolver-highs/build/include/highs/parallel/HighsMutex.h +124 -0
  169. data/ext/lpsolver-highs/build/include/highs/parallel/HighsParallel.h +128 -0
  170. data/ext/lpsolver-highs/build/include/highs/parallel/HighsRaceTimer.h +38 -0
  171. data/ext/lpsolver-highs/build/include/highs/parallel/HighsSchedulerConstants.h +19 -0
  172. data/ext/lpsolver-highs/build/include/highs/parallel/HighsSpinMutex.h +48 -0
  173. data/ext/lpsolver-highs/build/include/highs/parallel/HighsSplitDeque.h +606 -0
  174. data/ext/lpsolver-highs/build/include/highs/parallel/HighsTask.h +170 -0
  175. data/ext/lpsolver-highs/build/include/highs/parallel/HighsTaskExecutor.h +217 -0
  176. data/ext/lpsolver-highs/build/include/highs/pdlp/CupdlpWrapper.h +108 -0
  177. data/ext/lpsolver-highs/build/include/highs/pdlp/HiPdlpTimer.h +155 -0
  178. data/ext/lpsolver-highs/build/include/highs/pdlp/HiPdlpWrapper.h +26 -0
  179. data/ext/lpsolver-highs/build/include/highs/pdlp/cupdlp/cupdlp_cs.h +40 -0
  180. data/ext/lpsolver-highs/build/include/highs/pdlp/cupdlp/cupdlp_defs.h +447 -0
  181. data/ext/lpsolver-highs/build/include/highs/pdlp/cupdlp/cupdlp_linalg.h +189 -0
  182. data/ext/lpsolver-highs/build/include/highs/pdlp/cupdlp/cupdlp_proj.h +19 -0
  183. data/ext/lpsolver-highs/build/include/highs/pdlp/cupdlp/cupdlp_restart.h +31 -0
  184. data/ext/lpsolver-highs/build/include/highs/pdlp/cupdlp/cupdlp_scaling.h +26 -0
  185. data/ext/lpsolver-highs/build/include/highs/pdlp/cupdlp/cupdlp_solver.h +105 -0
  186. data/ext/lpsolver-highs/build/include/highs/pdlp/cupdlp/cupdlp_step.h +37 -0
  187. data/ext/lpsolver-highs/build/include/highs/pdlp/cupdlp/cupdlp_utils.c +1850 -0
  188. data/ext/lpsolver-highs/build/include/highs/pdlp/hipdlp/defs.hpp +222 -0
  189. data/ext/lpsolver-highs/build/include/highs/pdlp/hipdlp/linalg.hpp +61 -0
  190. data/ext/lpsolver-highs/build/include/highs/pdlp/hipdlp/logger.hpp +80 -0
  191. data/ext/lpsolver-highs/build/include/highs/pdlp/hipdlp/pdhg.hpp +358 -0
  192. data/ext/lpsolver-highs/build/include/highs/pdlp/hipdlp/restart.hpp +96 -0
  193. data/ext/lpsolver-highs/build/include/highs/pdlp/hipdlp/scaling.hpp +74 -0
  194. data/ext/lpsolver-highs/build/include/highs/pdlp/hipdlp/solver_results.hpp +65 -0
  195. data/ext/lpsolver-highs/build/include/highs/pdqsort/pdqsort.h +532 -0
  196. data/ext/lpsolver-highs/build/include/highs/presolve/HPresolve.h +505 -0
  197. data/ext/lpsolver-highs/build/include/highs/presolve/HPresolveAnalysis.h +52 -0
  198. data/ext/lpsolver-highs/build/include/highs/presolve/HighsPostsolveStack.h +943 -0
  199. data/ext/lpsolver-highs/build/include/highs/presolve/HighsSymmetry.h +284 -0
  200. data/ext/lpsolver-highs/build/include/highs/presolve/ICrash.h +124 -0
  201. data/ext/lpsolver-highs/build/include/highs/presolve/ICrashUtil.h +62 -0
  202. data/ext/lpsolver-highs/build/include/highs/presolve/ICrashX.h +23 -0
  203. data/ext/lpsolver-highs/build/include/highs/presolve/PresolveComponent.h +90 -0
  204. data/ext/lpsolver-highs/build/include/highs/qpsolver/a_asm.hpp +77 -0
  205. data/ext/lpsolver-highs/build/include/highs/qpsolver/a_quass.hpp +22 -0
  206. data/ext/lpsolver-highs/build/include/highs/qpsolver/basis.hpp +159 -0
  207. data/ext/lpsolver-highs/build/include/highs/qpsolver/crashsolution.hpp +20 -0
  208. data/ext/lpsolver-highs/build/include/highs/qpsolver/dantzigpricing.hpp +80 -0
  209. data/ext/lpsolver-highs/build/include/highs/qpsolver/devexpricing.hpp +108 -0
  210. data/ext/lpsolver-highs/build/include/highs/qpsolver/eventhandler.hpp +30 -0
  211. data/ext/lpsolver-highs/build/include/highs/qpsolver/factor.hpp +408 -0
  212. data/ext/lpsolver-highs/build/include/highs/qpsolver/feasibility_bounded.hpp +114 -0
  213. data/ext/lpsolver-highs/build/include/highs/qpsolver/feasibility_highs.hpp +301 -0
  214. data/ext/lpsolver-highs/build/include/highs/qpsolver/gradient.hpp +46 -0
  215. data/ext/lpsolver-highs/build/include/highs/qpsolver/instance.hpp +70 -0
  216. data/ext/lpsolver-highs/build/include/highs/qpsolver/matrix.hpp +342 -0
  217. data/ext/lpsolver-highs/build/include/highs/qpsolver/perturbation.hpp +15 -0
  218. data/ext/lpsolver-highs/build/include/highs/qpsolver/pricing.hpp +22 -0
  219. data/ext/lpsolver-highs/build/include/highs/qpsolver/qpconst.hpp +34 -0
  220. data/ext/lpsolver-highs/build/include/highs/qpsolver/qpvector.hpp +242 -0
  221. data/ext/lpsolver-highs/build/include/highs/qpsolver/quass.hpp +27 -0
  222. data/ext/lpsolver-highs/build/include/highs/qpsolver/ratiotest.hpp +26 -0
  223. data/ext/lpsolver-highs/build/include/highs/qpsolver/runtime.hpp +45 -0
  224. data/ext/lpsolver-highs/build/include/highs/qpsolver/scaling.hpp +15 -0
  225. data/ext/lpsolver-highs/build/include/highs/qpsolver/settings.hpp +84 -0
  226. data/ext/lpsolver-highs/build/include/highs/qpsolver/snippets.hpp +36 -0
  227. data/ext/lpsolver-highs/build/include/highs/qpsolver/statistics.hpp +30 -0
  228. data/ext/lpsolver-highs/build/include/highs/qpsolver/steepestedgepricing.hpp +173 -0
  229. data/ext/lpsolver-highs/build/include/highs/simplex/HApp.h +550 -0
  230. data/ext/lpsolver-highs/build/include/highs/simplex/HEkk.h +419 -0
  231. data/ext/lpsolver-highs/build/include/highs/simplex/HEkkDual.h +513 -0
  232. data/ext/lpsolver-highs/build/include/highs/simplex/HEkkDualRHS.h +134 -0
  233. data/ext/lpsolver-highs/build/include/highs/simplex/HEkkDualRow.h +201 -0
  234. data/ext/lpsolver-highs/build/include/highs/simplex/HEkkPrimal.h +191 -0
  235. data/ext/lpsolver-highs/build/include/highs/simplex/HSimplex.h +42 -0
  236. data/ext/lpsolver-highs/build/include/highs/simplex/HSimplexDebug.h +48 -0
  237. data/ext/lpsolver-highs/build/include/highs/simplex/HSimplexNla.h +158 -0
  238. data/ext/lpsolver-highs/build/include/highs/simplex/HSimplexReport.h +21 -0
  239. data/ext/lpsolver-highs/build/include/highs/simplex/HighsSimplexAnalysis.h +500 -0
  240. data/ext/lpsolver-highs/build/include/highs/simplex/SimplexConst.h +273 -0
  241. data/ext/lpsolver-highs/build/include/highs/simplex/SimplexStruct.h +263 -0
  242. data/ext/lpsolver-highs/build/include/highs/simplex/SimplexTimer.h +414 -0
  243. data/ext/lpsolver-highs/build/include/highs/test_kkt/DevKkt.h +143 -0
  244. data/ext/lpsolver-highs/build/include/highs/test_kkt/KktCh2.h +79 -0
  245. data/ext/lpsolver-highs/build/include/highs/util/FactorTimer.h +199 -0
  246. data/ext/lpsolver-highs/build/include/highs/util/HFactor.h +587 -0
  247. data/ext/lpsolver-highs/build/include/highs/util/HFactorConst.h +81 -0
  248. data/ext/lpsolver-highs/build/include/highs/util/HFactorDebug.h +55 -0
  249. data/ext/lpsolver-highs/build/include/highs/util/HSet.h +89 -0
  250. data/ext/lpsolver-highs/build/include/highs/util/HVector.h +22 -0
  251. data/ext/lpsolver-highs/build/include/highs/util/HVectorBase.h +102 -0
  252. data/ext/lpsolver-highs/build/include/highs/util/HighsCDouble.h +323 -0
  253. data/ext/lpsolver-highs/build/include/highs/util/HighsComponent.h +53 -0
  254. data/ext/lpsolver-highs/build/include/highs/util/HighsDataStack.h +83 -0
  255. data/ext/lpsolver-highs/build/include/highs/util/HighsDisjointSets.h +107 -0
  256. data/ext/lpsolver-highs/build/include/highs/util/HighsHash.h +1274 -0
  257. data/ext/lpsolver-highs/build/include/highs/util/HighsHashTree.h +1461 -0
  258. data/ext/lpsolver-highs/build/include/highs/util/HighsInt.h +36 -0
  259. data/ext/lpsolver-highs/build/include/highs/util/HighsIntegers.h +212 -0
  260. data/ext/lpsolver-highs/build/include/highs/util/HighsLinearSumBounds.h +203 -0
  261. data/ext/lpsolver-highs/build/include/highs/util/HighsMatrixPic.h +37 -0
  262. data/ext/lpsolver-highs/build/include/highs/util/HighsMatrixSlice.h +561 -0
  263. data/ext/lpsolver-highs/build/include/highs/util/HighsMatrixUtils.h +57 -0
  264. data/ext/lpsolver-highs/build/include/highs/util/HighsMemoryAllocation.h +63 -0
  265. data/ext/lpsolver-highs/build/include/highs/util/HighsRandom.h +242 -0
  266. data/ext/lpsolver-highs/build/include/highs/util/HighsRbTree.h +452 -0
  267. data/ext/lpsolver-highs/build/include/highs/util/HighsSort.h +131 -0
  268. data/ext/lpsolver-highs/build/include/highs/util/HighsSparseMatrix.h +151 -0
  269. data/ext/lpsolver-highs/build/include/highs/util/HighsSparseVectorSum.h +95 -0
  270. data/ext/lpsolver-highs/build/include/highs/util/HighsSplay.h +135 -0
  271. data/ext/lpsolver-highs/build/include/highs/util/HighsTimer.h +385 -0
  272. data/ext/lpsolver-highs/build/include/highs/util/HighsUtils.h +272 -0
  273. data/ext/lpsolver-highs/build/include/highs/util/stringutil.h +46 -0
  274. data/ext/lpsolver-highs/build/include/highs/zstr/strict_fstream.hpp +237 -0
  275. data/ext/lpsolver-highs/build/include/highs/zstr/zstr.hpp +473 -0
  276. data/ext/lpsolver-highs/build/include/highs_export.h +43 -0
  277. data/ext/lpsolver-highs/build/lib/cmake/highs/highs-config-version.cmake +65 -0
  278. data/ext/lpsolver-highs/build/lib/cmake/highs/highs-config.cmake +36 -0
  279. data/ext/lpsolver-highs/build/lib/cmake/highs/highs-targets-release.cmake +19 -0
  280. data/ext/lpsolver-highs/build/lib/cmake/highs/highs-targets.cmake +111 -0
  281. data/ext/lpsolver-highs/build/lib/libhighs.a +0 -0
  282. data/ext/lpsolver-highs/build/lib/pkgconfig/highs.pc +12 -0
  283. data/ext/lpsolver-highs/build/share/doc/HIGHS/AUTHORS +7 -0
  284. data/ext/lpsolver-highs/build/share/doc/HIGHS/CITATION.cff +29 -0
  285. data/ext/lpsolver-highs/build/share/doc/HIGHS/CODE_OF_CONDUCT.md +128 -0
  286. data/ext/lpsolver-highs/build/share/doc/HIGHS/CONTRIBUTING.md +31 -0
  287. data/ext/lpsolver-highs/build/share/doc/HIGHS/FEATURES.md +61 -0
  288. data/ext/lpsolver-highs/build/share/doc/HIGHS/LICENSE.txt +21 -0
  289. data/ext/lpsolver-highs/build/share/doc/HIGHS/README.md +281 -0
  290. data/ext/lpsolver-highs/build_webdemo.sh +46 -0
  291. data/ext/lpsolver-highs/check/Avgas.cpp +245 -0
  292. data/ext/lpsolver-highs/check/Avgas.h +44 -0
  293. data/ext/lpsolver-highs/check/CMakeLists.txt +573 -0
  294. data/ext/lpsolver-highs/check/HCheckConfig.h.bazel.in +6 -0
  295. data/ext/lpsolver-highs/check/HCheckConfig.h.in +12 -0
  296. data/ext/lpsolver-highs/check/HCheckConfig.h.meson.in +6 -0
  297. data/ext/lpsolver-highs/check/SpecialLps.h +405 -0
  298. data/ext/lpsolver-highs/check/TestAlienBasis.cpp +720 -0
  299. data/ext/lpsolver-highs/check/TestBasis.cpp +359 -0
  300. data/ext/lpsolver-highs/check/TestBasisSolves.cpp +669 -0
  301. data/ext/lpsolver-highs/check/TestCAPI.c +2513 -0
  302. data/ext/lpsolver-highs/check/TestCallbacks.cpp +608 -0
  303. data/ext/lpsolver-highs/check/TestCheckSolution.cpp +740 -0
  304. data/ext/lpsolver-highs/check/TestCrossover.cpp +111 -0
  305. data/ext/lpsolver-highs/check/TestDualize.cpp +172 -0
  306. data/ext/lpsolver-highs/check/TestEkk.cpp +100 -0
  307. data/ext/lpsolver-highs/check/TestFactor.cpp +389 -0
  308. data/ext/lpsolver-highs/check/TestFilereader.cpp +568 -0
  309. data/ext/lpsolver-highs/check/TestFortranAPI.f90 +65 -0
  310. data/ext/lpsolver-highs/check/TestHSet.cpp +80 -0
  311. data/ext/lpsolver-highs/check/TestHighsCDouble.cpp +109 -0
  312. data/ext/lpsolver-highs/check/TestHighsGFkSolve.cpp +102 -0
  313. data/ext/lpsolver-highs/check/TestHighsHash.cpp +126 -0
  314. data/ext/lpsolver-highs/check/TestHighsHessian.cpp +329 -0
  315. data/ext/lpsolver-highs/check/TestHighsIntegers.cpp +42 -0
  316. data/ext/lpsolver-highs/check/TestHighsModel.cpp +134 -0
  317. data/ext/lpsolver-highs/check/TestHighsParallel.cpp +277 -0
  318. data/ext/lpsolver-highs/check/TestHighsRbTree.cpp +109 -0
  319. data/ext/lpsolver-highs/check/TestHighsSparseMatrix.cpp +126 -0
  320. data/ext/lpsolver-highs/check/TestHighsVersion.cpp +61 -0
  321. data/ext/lpsolver-highs/check/TestHipo.cpp +122 -0
  322. data/ext/lpsolver-highs/check/TestICrash.cpp +46 -0
  323. data/ext/lpsolver-highs/check/TestIO.cpp +163 -0
  324. data/ext/lpsolver-highs/check/TestIis.cpp +1063 -0
  325. data/ext/lpsolver-highs/check/TestInfo.cpp +116 -0
  326. data/ext/lpsolver-highs/check/TestIpm.cpp +226 -0
  327. data/ext/lpsolver-highs/check/TestIpx.cpp +96 -0
  328. data/ext/lpsolver-highs/check/TestLPFileFormat.cpp +22 -0
  329. data/ext/lpsolver-highs/check/TestLogging.cpp +69 -0
  330. data/ext/lpsolver-highs/check/TestLpModification.cpp +2497 -0
  331. data/ext/lpsolver-highs/check/TestLpOrientation.cpp +121 -0
  332. data/ext/lpsolver-highs/check/TestLpSolvers.cpp +555 -0
  333. data/ext/lpsolver-highs/check/TestLpValidation.cpp +689 -0
  334. data/ext/lpsolver-highs/check/TestMain.cpp +6 -0
  335. data/ext/lpsolver-highs/check/TestMipSolver.cpp +1406 -0
  336. data/ext/lpsolver-highs/check/TestModelProperties.cpp +143 -0
  337. data/ext/lpsolver-highs/check/TestMultiObjective.cpp +198 -0
  338. data/ext/lpsolver-highs/check/TestNames.cpp +187 -0
  339. data/ext/lpsolver-highs/check/TestOptions.cpp +544 -0
  340. data/ext/lpsolver-highs/check/TestPdlp.cpp +327 -0
  341. data/ext/lpsolver-highs/check/TestPdlpHi.cpp +40 -0
  342. data/ext/lpsolver-highs/check/TestPresolve.cpp +912 -0
  343. data/ext/lpsolver-highs/check/TestQpSolver.cpp +1345 -0
  344. data/ext/lpsolver-highs/check/TestRanging.cpp +558 -0
  345. data/ext/lpsolver-highs/check/TestRays.cpp +1010 -0
  346. data/ext/lpsolver-highs/check/TestSemiVariables.cpp +329 -0
  347. data/ext/lpsolver-highs/check/TestSetup.cpp +12 -0
  348. data/ext/lpsolver-highs/check/TestSort.cpp +247 -0
  349. data/ext/lpsolver-highs/check/TestSpecialLps.cpp +775 -0
  350. data/ext/lpsolver-highs/check/TestThrow.cpp +83 -0
  351. data/ext/lpsolver-highs/check/TestTspSolver.cpp +19 -0
  352. data/ext/lpsolver-highs/check/TestUserScale.cpp +444 -0
  353. data/ext/lpsolver-highs/check/cublas_example.cpp +76 -0
  354. data/ext/lpsolver-highs/check/cublas_gpu_start.cpp +88 -0
  355. data/ext/lpsolver-highs/check/hipo_test_option_files/hipo_options_0 +1 -0
  356. data/ext/lpsolver-highs/check/instances/1448.lp +1 -0
  357. data/ext/lpsolver-highs/check/instances/1449a.lp +1 -0
  358. data/ext/lpsolver-highs/check/instances/1449b.lp +1 -0
  359. data/ext/lpsolver-highs/check/instances/1451.lp +8 -0
  360. data/ext/lpsolver-highs/check/instances/2122.lp +1822 -0
  361. data/ext/lpsolver-highs/check/instances/2171.mps +717 -0
  362. data/ext/lpsolver-highs/check/instances/25fv47.mps +6919 -0
  363. data/ext/lpsolver-highs/check/instances/2821-duplicate.mps +31 -0
  364. data/ext/lpsolver-highs/check/instances/2821-qmatrix.mps +31 -0
  365. data/ext/lpsolver-highs/check/instances/2821-quadobj.mps +29 -0
  366. data/ext/lpsolver-highs/check/instances/2821-summation.mps +30 -0
  367. data/ext/lpsolver-highs/check/instances/2821.mps +29 -0
  368. data/ext/lpsolver-highs/check/instances/2894.mps +89 -0
  369. data/ext/lpsolver-highs/check/instances/80bau3b.mps +23732 -0
  370. data/ext/lpsolver-highs/check/instances/WithInf.set +3 -0
  371. data/ext/lpsolver-highs/check/instances/adlittle.mps +335 -0
  372. data/ext/lpsolver-highs/check/instances/afiro.mps +83 -0
  373. data/ext/lpsolver-highs/check/instances/avgas.mps +51 -0
  374. data/ext/lpsolver-highs/check/instances/bell5.mps +384 -0
  375. data/ext/lpsolver-highs/check/instances/bgetam.mps +2112 -0
  376. data/ext/lpsolver-highs/check/instances/blending.mps +13 -0
  377. data/ext/lpsolver-highs/check/instances/box1.mps +1085 -0
  378. data/ext/lpsolver-highs/check/instances/chip.mps +13 -0
  379. data/ext/lpsolver-highs/check/instances/comment.mps +23 -0
  380. data/ext/lpsolver-highs/check/instances/cplex1.mps +9674 -0
  381. data/ext/lpsolver-highs/check/instances/dD2e.mps +10 -0
  382. data/ext/lpsolver-highs/check/instances/dcmulti.mps +2310 -0
  383. data/ext/lpsolver-highs/check/instances/e226.mps +1733 -0
  384. data/ext/lpsolver-highs/check/instances/egout-ac.mps +473 -0
  385. data/ext/lpsolver-highs/check/instances/egout.mps +403 -0
  386. data/ext/lpsolver-highs/check/instances/etamacro.mps +2084 -0
  387. data/ext/lpsolver-highs/check/instances/ex72a.mps +849 -0
  388. data/ext/lpsolver-highs/check/instances/fixed-binary.lp +11 -0
  389. data/ext/lpsolver-highs/check/instances/flugpl.mps +111 -0
  390. data/ext/lpsolver-highs/check/instances/flugpl_illegal_integer.sol +24 -0
  391. data/ext/lpsolver-highs/check/instances/flugpl_integer.sol +25 -0
  392. data/ext/lpsolver-highs/check/instances/forest6.mps +261 -0
  393. data/ext/lpsolver-highs/check/instances/galenet.mps +34 -0
  394. data/ext/lpsolver-highs/check/instances/gams10am.mps +478 -0
  395. data/ext/lpsolver-highs/check/instances/garbage.ems +3 -0
  396. data/ext/lpsolver-highs/check/instances/garbage.lp +3 -0
  397. data/ext/lpsolver-highs/check/instances/garbage.mps +3 -0
  398. data/ext/lpsolver-highs/check/instances/gas11.mps +2924 -0
  399. data/ext/lpsolver-highs/check/instances/gesa2.mps +5459 -0
  400. data/ext/lpsolver-highs/check/instances/greenbea.mps +19215 -0
  401. data/ext/lpsolver-highs/check/instances/gt2.mps +534 -0
  402. data/ext/lpsolver-highs/check/instances/infeasible-mip0.mps +140 -0
  403. data/ext/lpsolver-highs/check/instances/infeasible-mip1.mps +371 -0
  404. data/ext/lpsolver-highs/check/instances/israel.mps +1490 -0
  405. data/ext/lpsolver-highs/check/instances/issue-2095.mps +836 -0
  406. data/ext/lpsolver-highs/check/instances/issue-2173.mps +3331 -0
  407. data/ext/lpsolver-highs/check/instances/issue-2204.mps +143 -0
  408. data/ext/lpsolver-highs/check/instances/issue-2290.mps +158 -0
  409. data/ext/lpsolver-highs/check/instances/issue-2388.lp +76 -0
  410. data/ext/lpsolver-highs/check/instances/issue-2402.mps +435 -0
  411. data/ext/lpsolver-highs/check/instances/issue-2446.mps +9154 -0
  412. data/ext/lpsolver-highs/check/instances/issue-2585.lp +16 -0
  413. data/ext/lpsolver-highs/check/instances/issue-2874-3.mps +97 -0
  414. data/ext/lpsolver-highs/check/instances/klein1.mps +422 -0
  415. data/ext/lpsolver-highs/check/instances/lseu.mps +371 -0
  416. data/ext/lpsolver-highs/check/instances/model.xyz +1 -0
  417. data/ext/lpsolver-highs/check/instances/nan0.mps +13 -0
  418. data/ext/lpsolver-highs/check/instances/nan1.mps +13 -0
  419. data/ext/lpsolver-highs/check/instances/nan2.mps +13 -0
  420. data/ext/lpsolver-highs/check/instances/no-newline-eof.lp +5 -0
  421. data/ext/lpsolver-highs/check/instances/p01.mps +909 -0
  422. data/ext/lpsolver-highs/check/instances/p0548.mps +1992 -0
  423. data/ext/lpsolver-highs/check/instances/primal1.mps +3909 -0
  424. data/ext/lpsolver-highs/check/instances/qap04.mps +606 -0
  425. data/ext/lpsolver-highs/check/instances/qcqp.lp +8 -0
  426. data/ext/lpsolver-highs/check/instances/qjh.lp +9 -0
  427. data/ext/lpsolver-highs/check/instances/qjh.mps +18 -0
  428. data/ext/lpsolver-highs/check/instances/qjh_qmatrix.mps +19 -0
  429. data/ext/lpsolver-highs/check/instances/qjh_quadobj.mps +18 -0
  430. data/ext/lpsolver-highs/check/instances/qjh_quadobj_qmatrix.mps +25 -0
  431. data/ext/lpsolver-highs/check/instances/qjh_uncon.lp +10 -0
  432. data/ext/lpsolver-highs/check/instances/qjh_uncon.mps +17 -0
  433. data/ext/lpsolver-highs/check/instances/qpinfeasible.lp +8 -0
  434. data/ext/lpsolver-highs/check/instances/qptestnw.lp +7 -0
  435. data/ext/lpsolver-highs/check/instances/qpunbounded.lp +5 -0
  436. data/ext/lpsolver-highs/check/instances/refinery.mps +1882 -0
  437. data/ext/lpsolver-highs/check/instances/rgn.mps +559 -0
  438. data/ext/lpsolver-highs/check/instances/scrs8.mps +2717 -0
  439. data/ext/lpsolver-highs/check/instances/sctest.mps +66 -0
  440. data/ext/lpsolver-highs/check/instances/semi-continuous.lp +13 -0
  441. data/ext/lpsolver-highs/check/instances/semi-continuous.mps +24 -0
  442. data/ext/lpsolver-highs/check/instances/semi-integer.lp +15 -0
  443. data/ext/lpsolver-highs/check/instances/semi-integer.mps +22 -0
  444. data/ext/lpsolver-highs/check/instances/shell.mps +4039 -0
  445. data/ext/lpsolver-highs/check/instances/silly-names.mps +14 -0
  446. data/ext/lpsolver-highs/check/instances/small_mip.mps +87 -0
  447. data/ext/lpsolver-highs/check/instances/smalllp.mps +21 -0
  448. data/ext/lpsolver-highs/check/instances/sp150x300d.mps +1983 -0
  449. data/ext/lpsolver-highs/check/instances/stair.mps +2499 -0
  450. data/ext/lpsolver-highs/check/instances/standata.mps +2317 -0
  451. data/ext/lpsolver-highs/check/instances/standgub.mps +2428 -0
  452. data/ext/lpsolver-highs/check/instances/standmps.mps +2695 -0
  453. data/ext/lpsolver-highs/check/instances/test.mps +53 -0
  454. data/ext/lpsolver-highs/check/instances/vol1.mps +1895 -0
  455. data/ext/lpsolver-highs/check/instances/warnings.mps +68 -0
  456. data/ext/lpsolver-highs/check/instances/woodinfe.mps +216 -0
  457. data/ext/lpsolver-highs/check/matrix_multiplication.hpp +49 -0
  458. data/ext/lpsolver-highs/check/meson.build +92 -0
  459. data/ext/lpsolver-highs/check/pythontest.py +11 -0
  460. data/ext/lpsolver-highs/check/sample_options_file +8 -0
  461. data/ext/lpsolver-highs/cmake/CheckAtomic.cmake +74 -0
  462. data/ext/lpsolver-highs/cmake/FindCUDAConf.cmake +44 -0
  463. data/ext/lpsolver-highs/cmake/FindHipoDeps.cmake +351 -0
  464. data/ext/lpsolver-highs/cmake/README.md +243 -0
  465. data/ext/lpsolver-highs/cmake/cpp-highs.cmake +243 -0
  466. data/ext/lpsolver-highs/cmake/dotnet.cmake +94 -0
  467. data/ext/lpsolver-highs/cmake/highs-config.cmake.in +22 -0
  468. data/ext/lpsolver-highs/cmake/python-highs.cmake +74 -0
  469. data/ext/lpsolver-highs/cmake/set-version.cmake +26 -0
  470. data/ext/lpsolver-highs/cmake/sources-python.cmake +461 -0
  471. data/ext/lpsolver-highs/cmake/sources.cmake +618 -0
  472. data/ext/lpsolver-highs/docs/HiGHS_CopyrightHeader.pl +78 -0
  473. data/ext/lpsolver-highs/docs/HiGHS_CopyrightHeaderUpdateAll +32 -0
  474. data/ext/lpsolver-highs/docs/Project.toml +7 -0
  475. data/ext/lpsolver-highs/docs/README.md +27 -0
  476. data/ext/lpsolver-highs/docs/c_api_gen/HConfig.h +1 -0
  477. data/ext/lpsolver-highs/docs/c_api_gen/build.jl +48 -0
  478. data/ext/lpsolver-highs/docs/make.jl +115 -0
  479. data/ext/lpsolver-highs/docs/src/assets/logo.png +0 -0
  480. data/ext/lpsolver-highs/docs/src/callbacks.md +171 -0
  481. data/ext/lpsolver-highs/docs/src/executable.md +88 -0
  482. data/ext/lpsolver-highs/docs/src/guide/advanced.md +66 -0
  483. data/ext/lpsolver-highs/docs/src/guide/basic.md +116 -0
  484. data/ext/lpsolver-highs/docs/src/guide/further.md +193 -0
  485. data/ext/lpsolver-highs/docs/src/guide/gpu.md +58 -0
  486. data/ext/lpsolver-highs/docs/src/guide/index.md +18 -0
  487. data/ext/lpsolver-highs/docs/src/guide/kkt.md +219 -0
  488. data/ext/lpsolver-highs/docs/src/guide/numerics.md +55 -0
  489. data/ext/lpsolver-highs/docs/src/index.md +86 -0
  490. data/ext/lpsolver-highs/docs/src/installation.md +130 -0
  491. data/ext/lpsolver-highs/docs/src/interfaces/c_api.md +6 -0
  492. data/ext/lpsolver-highs/docs/src/interfaces/cpp/examples.md +1 -0
  493. data/ext/lpsolver-highs/docs/src/interfaces/cpp/index.md +29 -0
  494. data/ext/lpsolver-highs/docs/src/interfaces/cpp/library.md +107 -0
  495. data/ext/lpsolver-highs/docs/src/interfaces/csharp.md +55 -0
  496. data/ext/lpsolver-highs/docs/src/interfaces/fortran.md +11 -0
  497. data/ext/lpsolver-highs/docs/src/interfaces/julia/index.md +130 -0
  498. data/ext/lpsolver-highs/docs/src/interfaces/other.md +41 -0
  499. data/ext/lpsolver-highs/docs/src/interfaces/python/example-py.md +275 -0
  500. data/ext/lpsolver-highs/docs/src/interfaces/python/index.md +91 -0
  501. data/ext/lpsolver-highs/docs/src/interfaces/python/model-py.md +90 -0
  502. data/ext/lpsolver-highs/docs/src/options/definitions.md +529 -0
  503. data/ext/lpsolver-highs/docs/src/options/intro.md +46 -0
  504. data/ext/lpsolver-highs/docs/src/parallel.md +88 -0
  505. data/ext/lpsolver-highs/docs/src/solvers.md +168 -0
  506. data/ext/lpsolver-highs/docs/src/structures/classes/HighsHessian.md +9 -0
  507. data/ext/lpsolver-highs/docs/src/structures/classes/HighsIis.md +16 -0
  508. data/ext/lpsolver-highs/docs/src/structures/classes/HighsLp.md +19 -0
  509. data/ext/lpsolver-highs/docs/src/structures/classes/HighsModel.md +6 -0
  510. data/ext/lpsolver-highs/docs/src/structures/classes/HighsSparseMatrix.md +10 -0
  511. data/ext/lpsolver-highs/docs/src/structures/classes/index.md +11 -0
  512. data/ext/lpsolver-highs/docs/src/structures/enums.md +114 -0
  513. data/ext/lpsolver-highs/docs/src/structures/index.md +12 -0
  514. data/ext/lpsolver-highs/docs/src/structures/structs/HighsBasis.md +8 -0
  515. data/ext/lpsolver-highs/docs/src/structures/structs/HighsInfo.md +148 -0
  516. data/ext/lpsolver-highs/docs/src/structures/structs/HighsLinearObjective.md +11 -0
  517. data/ext/lpsolver-highs/docs/src/structures/structs/HighsSolution.md +10 -0
  518. data/ext/lpsolver-highs/docs/src/structures/structs/index.md +10 -0
  519. data/ext/lpsolver-highs/docs/src/terminology.md +163 -0
  520. data/ext/lpsolver-highs/examples/CMakeLists.txt +26 -0
  521. data/ext/lpsolver-highs/examples/Docs.py +104 -0
  522. data/ext/lpsolver-highs/examples/branch-and-price.py +465 -0
  523. data/ext/lpsolver-highs/examples/call_highs_from_c.c +685 -0
  524. data/ext/lpsolver-highs/examples/call_highs_from_c_minimal.c +659 -0
  525. data/ext/lpsolver-highs/examples/call_highs_from_cpp.cpp +178 -0
  526. data/ext/lpsolver-highs/examples/call_highs_from_csharp.cs +83 -0
  527. data/ext/lpsolver-highs/examples/call_highs_from_fortran.f90 +579 -0
  528. data/ext/lpsolver-highs/examples/call_highs_from_python.py +448 -0
  529. data/ext/lpsolver-highs/examples/call_highs_from_python_highspy.py +71 -0
  530. data/ext/lpsolver-highs/examples/call_highs_from_python_mps.py +59 -0
  531. data/ext/lpsolver-highs/examples/callback_gap.py +71 -0
  532. data/ext/lpsolver-highs/examples/chip.py +43 -0
  533. data/ext/lpsolver-highs/examples/chip0.py +29 -0
  534. data/ext/lpsolver-highs/examples/distillation.py +77 -0
  535. data/ext/lpsolver-highs/examples/knapsack.py +43 -0
  536. data/ext/lpsolver-highs/examples/minimal.py +11 -0
  537. data/ext/lpsolver-highs/examples/multi_objective.py +139 -0
  538. data/ext/lpsolver-highs/examples/multiple_objective.py +120 -0
  539. data/ext/lpsolver-highs/examples/network_flow.py +37 -0
  540. data/ext/lpsolver-highs/examples/nqueens.py +29 -0
  541. data/ext/lpsolver-highs/examples/plot_highs_log.py +134 -0
  542. data/ext/lpsolver-highs/extern/CLI11.hpp +11546 -0
  543. data/ext/lpsolver-highs/extern/LICENCE_1_0.txt +23 -0
  544. data/ext/lpsolver-highs/extern/amd/License.txt +35 -0
  545. data/ext/lpsolver-highs/extern/amd/SuiteSparse_config.c +54 -0
  546. data/ext/lpsolver-highs/extern/amd/SuiteSparse_config.h +56 -0
  547. data/ext/lpsolver-highs/extern/amd/amd.h +357 -0
  548. data/ext/lpsolver-highs/extern/amd/amd_1.c +172 -0
  549. data/ext/lpsolver-highs/extern/amd/amd_2.c +1761 -0
  550. data/ext/lpsolver-highs/extern/amd/amd_aat.c +179 -0
  551. data/ext/lpsolver-highs/extern/amd/amd_control.c +65 -0
  552. data/ext/lpsolver-highs/extern/amd/amd_defaults.c +37 -0
  553. data/ext/lpsolver-highs/extern/amd/amd_info.c +120 -0
  554. data/ext/lpsolver-highs/extern/amd/amd_internal.h +137 -0
  555. data/ext/lpsolver-highs/extern/amd/amd_order.c +195 -0
  556. data/ext/lpsolver-highs/extern/amd/amd_post_tree.c +105 -0
  557. data/ext/lpsolver-highs/extern/amd/amd_postorder.c +140 -0
  558. data/ext/lpsolver-highs/extern/amd/amd_preprocess.c +107 -0
  559. data/ext/lpsolver-highs/extern/amd/amd_valid.c +93 -0
  560. data/ext/lpsolver-highs/extern/amd/changes.txt +8 -0
  561. data/ext/lpsolver-highs/extern/catch.hpp +18861 -0
  562. data/ext/lpsolver-highs/extern/metis/Changes.txt +31 -0
  563. data/ext/lpsolver-highs/extern/metis/GKlib/GKlib.h +62 -0
  564. data/ext/lpsolver-highs/extern/metis/GKlib/error.c +21 -0
  565. data/ext/lpsolver-highs/extern/metis/GKlib/gk_arch.h +64 -0
  566. data/ext/lpsolver-highs/extern/metis/GKlib/gk_defs.h +19 -0
  567. data/ext/lpsolver-highs/extern/metis/GKlib/gk_macros.h +50 -0
  568. data/ext/lpsolver-highs/extern/metis/GKlib/gk_mkblas.h +51 -0
  569. data/ext/lpsolver-highs/extern/metis/GKlib/gk_mkmemory.h +80 -0
  570. data/ext/lpsolver-highs/extern/metis/GKlib/gk_mkpqueue.h +329 -0
  571. data/ext/lpsolver-highs/extern/metis/GKlib/gk_mkrandom.h +89 -0
  572. data/ext/lpsolver-highs/extern/metis/GKlib/gk_mksort.h +271 -0
  573. data/ext/lpsolver-highs/extern/metis/GKlib/gk_ms_inttypes.h +41 -0
  574. data/ext/lpsolver-highs/extern/metis/GKlib/gk_ms_stat.h +22 -0
  575. data/ext/lpsolver-highs/extern/metis/GKlib/gk_ms_stdint.h +41 -0
  576. data/ext/lpsolver-highs/extern/metis/GKlib/gk_proto.h +50 -0
  577. data/ext/lpsolver-highs/extern/metis/GKlib/gk_struct.h +66 -0
  578. data/ext/lpsolver-highs/extern/metis/GKlib/gk_types.h +15 -0
  579. data/ext/lpsolver-highs/extern/metis/GKlib/mcore.c +176 -0
  580. data/ext/lpsolver-highs/extern/metis/GKlib/memory.c +23 -0
  581. data/ext/lpsolver-highs/extern/metis/GKlib/random.c +37 -0
  582. data/ext/lpsolver-highs/extern/metis/LICENSE.txt +18 -0
  583. data/ext/lpsolver-highs/extern/metis/libmetis/auxapi.c +27 -0
  584. data/ext/lpsolver-highs/extern/metis/libmetis/balance.c +491 -0
  585. data/ext/lpsolver-highs/extern/metis/libmetis/bucketsort.c +44 -0
  586. data/ext/lpsolver-highs/extern/metis/libmetis/coarsen.c +895 -0
  587. data/ext/lpsolver-highs/extern/metis/libmetis/compress.c +231 -0
  588. data/ext/lpsolver-highs/extern/metis/libmetis/contig.c +83 -0
  589. data/ext/lpsolver-highs/extern/metis/libmetis/defs.h +39 -0
  590. data/ext/lpsolver-highs/extern/metis/libmetis/fm.c +527 -0
  591. data/ext/lpsolver-highs/extern/metis/libmetis/gklib.c +55 -0
  592. data/ext/lpsolver-highs/extern/metis/libmetis/gklib_defs.h +33 -0
  593. data/ext/lpsolver-highs/extern/metis/libmetis/graph.c +268 -0
  594. data/ext/lpsolver-highs/extern/metis/libmetis/initpart.c +385 -0
  595. data/ext/lpsolver-highs/extern/metis/libmetis/macros.h +59 -0
  596. data/ext/lpsolver-highs/extern/metis/libmetis/mcutil.c +162 -0
  597. data/ext/lpsolver-highs/extern/metis/libmetis/metislib.h +35 -0
  598. data/ext/lpsolver-highs/extern/metis/libmetis/mmd.c +598 -0
  599. data/ext/lpsolver-highs/extern/metis/libmetis/ometis.c +661 -0
  600. data/ext/lpsolver-highs/extern/metis/libmetis/options.c +260 -0
  601. data/ext/lpsolver-highs/extern/metis/libmetis/proto.h +172 -0
  602. data/ext/lpsolver-highs/extern/metis/libmetis/refine.c +99 -0
  603. data/ext/lpsolver-highs/extern/metis/libmetis/separator.c +57 -0
  604. data/ext/lpsolver-highs/extern/metis/libmetis/sfm.c +581 -0
  605. data/ext/lpsolver-highs/extern/metis/libmetis/srefine.c +152 -0
  606. data/ext/lpsolver-highs/extern/metis/libmetis/stdheaders.h +29 -0
  607. data/ext/lpsolver-highs/extern/metis/libmetis/struct.h +117 -0
  608. data/ext/lpsolver-highs/extern/metis/libmetis/util.c +59 -0
  609. data/ext/lpsolver-highs/extern/metis/libmetis/wspace.c +91 -0
  610. data/ext/lpsolver-highs/extern/metis/metis.h +271 -0
  611. data/ext/lpsolver-highs/extern/pdqsort/license.txt +16 -0
  612. data/ext/lpsolver-highs/extern/pdqsort/pdqsort.h +532 -0
  613. data/ext/lpsolver-highs/extern/rcm/LICENSE +19 -0
  614. data/ext/lpsolver-highs/extern/rcm/rcm.cpp +873 -0
  615. data/ext/lpsolver-highs/extern/rcm/rcm.h +22 -0
  616. data/ext/lpsolver-highs/extern/zstr/LICENSE +21 -0
  617. data/ext/lpsolver-highs/extern/zstr/strict_fstream.hpp +237 -0
  618. data/ext/lpsolver-highs/extern/zstr/zstr.hpp +473 -0
  619. data/ext/lpsolver-highs/flake.lock +61 -0
  620. data/ext/lpsolver-highs/flake.nix +73 -0
  621. data/ext/lpsolver-highs/highs/CMakeLists.txt +499 -0
  622. data/ext/lpsolver-highs/highs/HConfig.h.bazel.in +25 -0
  623. data/ext/lpsolver-highs/highs/HConfig.h.in +22 -0
  624. data/ext/lpsolver-highs/highs/HConfig.h.meson.in +17 -0
  625. data/ext/lpsolver-highs/highs/Highs.h +1812 -0
  626. data/ext/lpsolver-highs/highs/HighsRun.md +143 -0
  627. data/ext/lpsolver-highs/highs/highs_bindings.cpp +1826 -0
  628. data/ext/lpsolver-highs/highs/highspy/__init__.py +93 -0
  629. data/ext/lpsolver-highs/highs/highspy/__init__.pyi +91 -0
  630. data/ext/lpsolver-highs/highs/highspy/_core/__init__.pyi +1058 -0
  631. data/ext/lpsolver-highs/highs/highspy/_core/cb.pyi +118 -0
  632. data/ext/lpsolver-highs/highs/highspy/_core/simplex_constants.pyi +472 -0
  633. data/ext/lpsolver-highs/highs/highspy/highs.py +2430 -0
  634. data/ext/lpsolver-highs/highs/interfaces/highs_c_api.cpp +1812 -0
  635. data/ext/lpsolver-highs/highs/interfaces/highs_c_api.h +2651 -0
  636. data/ext/lpsolver-highs/highs/interfaces/highs_csharp_api.cs +1142 -0
  637. data/ext/lpsolver-highs/highs/interfaces/highs_fortran_api.f90 +873 -0
  638. data/ext/lpsolver-highs/highs/io/Filereader.cpp +87 -0
  639. data/ext/lpsolver-highs/highs/io/Filereader.h +45 -0
  640. data/ext/lpsolver-highs/highs/io/FilereaderLp.cpp +539 -0
  641. data/ext/lpsolver-highs/highs/io/FilereaderLp.h +49 -0
  642. data/ext/lpsolver-highs/highs/io/FilereaderMps.cpp +86 -0
  643. data/ext/lpsolver-highs/highs/io/FilereaderMps.h +27 -0
  644. data/ext/lpsolver-highs/highs/io/HMPSIO.cpp +1001 -0
  645. data/ext/lpsolver-highs/highs/io/HMPSIO.h +78 -0
  646. data/ext/lpsolver-highs/highs/io/HMpsFF.cpp +2113 -0
  647. data/ext/lpsolver-highs/highs/io/HMpsFF.h +245 -0
  648. data/ext/lpsolver-highs/highs/io/HighsIO.cpp +371 -0
  649. data/ext/lpsolver-highs/highs/io/HighsIO.h +118 -0
  650. data/ext/lpsolver-highs/highs/io/LoadOptions.cpp +60 -0
  651. data/ext/lpsolver-highs/highs/io/LoadOptions.h +24 -0
  652. data/ext/lpsolver-highs/highs/io/filereaderlp/LICENSE +19 -0
  653. data/ext/lpsolver-highs/highs/io/filereaderlp/builder.hpp +25 -0
  654. data/ext/lpsolver-highs/highs/io/filereaderlp/def.hpp +19 -0
  655. data/ext/lpsolver-highs/highs/io/filereaderlp/model.hpp +68 -0
  656. data/ext/lpsolver-highs/highs/io/filereaderlp/reader.cpp +1375 -0
  657. data/ext/lpsolver-highs/highs/io/filereaderlp/reader.hpp +10 -0
  658. data/ext/lpsolver-highs/highs/ipm/IpxSolution.h +32 -0
  659. data/ext/lpsolver-highs/highs/ipm/IpxWrapper.cpp +1526 -0
  660. data/ext/lpsolver-highs/highs/ipm/IpxWrapper.h +106 -0
  661. data/ext/lpsolver-highs/highs/ipm/basiclu/basiclu.h +161 -0
  662. data/ext/lpsolver-highs/highs/ipm/basiclu/basiclu_factorize.c +132 -0
  663. data/ext/lpsolver-highs/highs/ipm/basiclu/basiclu_factorize.h +247 -0
  664. data/ext/lpsolver-highs/highs/ipm/basiclu/basiclu_get_factors.c +148 -0
  665. data/ext/lpsolver-highs/highs/ipm/basiclu/basiclu_get_factors.h +108 -0
  666. data/ext/lpsolver-highs/highs/ipm/basiclu/basiclu_initialize.c +24 -0
  667. data/ext/lpsolver-highs/highs/ipm/basiclu/basiclu_initialize.h +119 -0
  668. data/ext/lpsolver-highs/highs/ipm/basiclu/basiclu_obj_factorize.h +34 -0
  669. data/ext/lpsolver-highs/highs/ipm/basiclu/basiclu_obj_free.h +19 -0
  670. data/ext/lpsolver-highs/highs/ipm/basiclu/basiclu_obj_get_factors.h +34 -0
  671. data/ext/lpsolver-highs/highs/ipm/basiclu/basiclu_obj_initialize.h +46 -0
  672. data/ext/lpsolver-highs/highs/ipm/basiclu/basiclu_obj_solve_dense.h +29 -0
  673. data/ext/lpsolver-highs/highs/ipm/basiclu/basiclu_obj_solve_for_update.h +42 -0
  674. data/ext/lpsolver-highs/highs/ipm/basiclu/basiclu_obj_solve_sparse.h +32 -0
  675. data/ext/lpsolver-highs/highs/ipm/basiclu/basiclu_obj_update.h +31 -0
  676. data/ext/lpsolver-highs/highs/ipm/basiclu/basiclu_object.c +325 -0
  677. data/ext/lpsolver-highs/highs/ipm/basiclu/basiclu_object.h +30 -0
  678. data/ext/lpsolver-highs/highs/ipm/basiclu/basiclu_solve_dense.c +46 -0
  679. data/ext/lpsolver-highs/highs/ipm/basiclu/basiclu_solve_dense.h +75 -0
  680. data/ext/lpsolver-highs/highs/ipm/basiclu/basiclu_solve_for_update.c +79 -0
  681. data/ext/lpsolver-highs/highs/ipm/basiclu/basiclu_solve_for_update.h +169 -0
  682. data/ext/lpsolver-highs/highs/ipm/basiclu/basiclu_solve_sparse.c +63 -0
  683. data/ext/lpsolver-highs/highs/ipm/basiclu/basiclu_solve_sparse.h +112 -0
  684. data/ext/lpsolver-highs/highs/ipm/basiclu/basiclu_update.c +44 -0
  685. data/ext/lpsolver-highs/highs/ipm/basiclu/basiclu_update.h +125 -0
  686. data/ext/lpsolver-highs/highs/ipm/basiclu/lu_build_factors.c +441 -0
  687. data/ext/lpsolver-highs/highs/ipm/basiclu/lu_condest.c +124 -0
  688. data/ext/lpsolver-highs/highs/ipm/basiclu/lu_def.h +39 -0
  689. data/ext/lpsolver-highs/highs/ipm/basiclu/lu_dfs.c +141 -0
  690. data/ext/lpsolver-highs/highs/ipm/basiclu/lu_factorize_bump.c +56 -0
  691. data/ext/lpsolver-highs/highs/ipm/basiclu/lu_file.c +184 -0
  692. data/ext/lpsolver-highs/highs/ipm/basiclu/lu_file.h +21 -0
  693. data/ext/lpsolver-highs/highs/ipm/basiclu/lu_garbage_perm.c +53 -0
  694. data/ext/lpsolver-highs/highs/ipm/basiclu/lu_initialize.c +56 -0
  695. data/ext/lpsolver-highs/highs/ipm/basiclu/lu_internal.c +352 -0
  696. data/ext/lpsolver-highs/highs/ipm/basiclu/lu_internal.h +220 -0
  697. data/ext/lpsolver-highs/highs/ipm/basiclu/lu_list.h +173 -0
  698. data/ext/lpsolver-highs/highs/ipm/basiclu/lu_markowitz.c +188 -0
  699. data/ext/lpsolver-highs/highs/ipm/basiclu/lu_matrix_norm.c +51 -0
  700. data/ext/lpsolver-highs/highs/ipm/basiclu/lu_pivot.c +1247 -0
  701. data/ext/lpsolver-highs/highs/ipm/basiclu/lu_residual_test.c +155 -0
  702. data/ext/lpsolver-highs/highs/ipm/basiclu/lu_setup_bump.c +198 -0
  703. data/ext/lpsolver-highs/highs/ipm/basiclu/lu_singletons.c +511 -0
  704. data/ext/lpsolver-highs/highs/ipm/basiclu/lu_solve_dense.c +129 -0
  705. data/ext/lpsolver-highs/highs/ipm/basiclu/lu_solve_for_update.c +360 -0
  706. data/ext/lpsolver-highs/highs/ipm/basiclu/lu_solve_sparse.c +284 -0
  707. data/ext/lpsolver-highs/highs/ipm/basiclu/lu_solve_symbolic.c +48 -0
  708. data/ext/lpsolver-highs/highs/ipm/basiclu/lu_solve_triangular.c +140 -0
  709. data/ext/lpsolver-highs/highs/ipm/basiclu/lu_update.c +908 -0
  710. data/ext/lpsolver-highs/highs/ipm/hipo/auxiliary/Auxiliary.cpp +301 -0
  711. data/ext/lpsolver-highs/highs/ipm/hipo/auxiliary/Auxiliary.h +104 -0
  712. data/ext/lpsolver-highs/highs/ipm/hipo/auxiliary/IntConfig.h +27 -0
  713. data/ext/lpsolver-highs/highs/ipm/hipo/auxiliary/KrylovMethods.cpp +193 -0
  714. data/ext/lpsolver-highs/highs/ipm/hipo/auxiliary/KrylovMethods.h +30 -0
  715. data/ext/lpsolver-highs/highs/ipm/hipo/auxiliary/Log.cpp +60 -0
  716. data/ext/lpsolver-highs/highs/ipm/hipo/auxiliary/Log.h +62 -0
  717. data/ext/lpsolver-highs/highs/ipm/hipo/auxiliary/OrderingPrint.h +10 -0
  718. data/ext/lpsolver-highs/highs/ipm/hipo/auxiliary/VectorOperations.cpp +117 -0
  719. data/ext/lpsolver-highs/highs/ipm/hipo/auxiliary/VectorOperations.h +59 -0
  720. data/ext/lpsolver-highs/highs/ipm/hipo/auxiliary/mycblas.h +85 -0
  721. data/ext/lpsolver-highs/highs/ipm/hipo/factorhighs/Analyse.cpp +1367 -0
  722. data/ext/lpsolver-highs/highs/ipm/hipo/factorhighs/Analyse.h +122 -0
  723. data/ext/lpsolver-highs/highs/ipm/hipo/factorhighs/CallAndTimeBlas.cpp +114 -0
  724. data/ext/lpsolver-highs/highs/ipm/hipo/factorhighs/CallAndTimeBlas.h +46 -0
  725. data/ext/lpsolver-highs/highs/ipm/hipo/factorhighs/CliqueStack.cpp +82 -0
  726. data/ext/lpsolver-highs/highs/ipm/hipo/factorhighs/CliqueStack.h +83 -0
  727. data/ext/lpsolver-highs/highs/ipm/hipo/factorhighs/DataCollector.cpp +326 -0
  728. data/ext/lpsolver-highs/highs/ipm/hipo/factorhighs/DataCollector.h +86 -0
  729. data/ext/lpsolver-highs/highs/ipm/hipo/factorhighs/DenseFact.h +48 -0
  730. data/ext/lpsolver-highs/highs/ipm/hipo/factorhighs/DenseFactHybrid.cpp +279 -0
  731. data/ext/lpsolver-highs/highs/ipm/hipo/factorhighs/DenseFactKernel.cpp +284 -0
  732. data/ext/lpsolver-highs/highs/ipm/hipo/factorhighs/DgemmParallel.cpp +38 -0
  733. data/ext/lpsolver-highs/highs/ipm/hipo/factorhighs/DgemmParallel.h +32 -0
  734. data/ext/lpsolver-highs/highs/ipm/hipo/factorhighs/FactorHiGHS.cpp +57 -0
  735. data/ext/lpsolver-highs/highs/ipm/hipo/factorhighs/FactorHiGHS.h +112 -0
  736. data/ext/lpsolver-highs/highs/ipm/hipo/factorhighs/FactorHiGHSSettings.h +63 -0
  737. data/ext/lpsolver-highs/highs/ipm/hipo/factorhighs/Factorise.cpp +405 -0
  738. data/ext/lpsolver-highs/highs/ipm/hipo/factorhighs/Factorise.h +85 -0
  739. data/ext/lpsolver-highs/highs/ipm/hipo/factorhighs/FormatHandler.cpp +46 -0
  740. data/ext/lpsolver-highs/highs/ipm/hipo/factorhighs/FormatHandler.h +95 -0
  741. data/ext/lpsolver-highs/highs/ipm/hipo/factorhighs/HybridHybridFormatHandler.cpp +238 -0
  742. data/ext/lpsolver-highs/highs/ipm/hipo/factorhighs/HybridHybridFormatHandler.h +31 -0
  743. data/ext/lpsolver-highs/highs/ipm/hipo/factorhighs/HybridSolveHandler.cpp +272 -0
  744. data/ext/lpsolver-highs/highs/ipm/hipo/factorhighs/HybridSolveHandler.h +26 -0
  745. data/ext/lpsolver-highs/highs/ipm/hipo/factorhighs/KrylovMethodsIpm.cpp +83 -0
  746. data/ext/lpsolver-highs/highs/ipm/hipo/factorhighs/KrylovMethodsIpm.h +45 -0
  747. data/ext/lpsolver-highs/highs/ipm/hipo/factorhighs/Numeric.cpp +54 -0
  748. data/ext/lpsolver-highs/highs/ipm/hipo/factorhighs/Numeric.h +46 -0
  749. data/ext/lpsolver-highs/highs/ipm/hipo/factorhighs/ReturnValues.h +19 -0
  750. data/ext/lpsolver-highs/highs/ipm/hipo/factorhighs/SolveHandler.cpp +10 -0
  751. data/ext/lpsolver-highs/highs/ipm/hipo/factorhighs/SolveHandler.h +48 -0
  752. data/ext/lpsolver-highs/highs/ipm/hipo/factorhighs/Swaps.cpp +70 -0
  753. data/ext/lpsolver-highs/highs/ipm/hipo/factorhighs/Swaps.h +19 -0
  754. data/ext/lpsolver-highs/highs/ipm/hipo/factorhighs/Symbolic.cpp +101 -0
  755. data/ext/lpsolver-highs/highs/ipm/hipo/factorhighs/Symbolic.h +220 -0
  756. data/ext/lpsolver-highs/highs/ipm/hipo/factorhighs/Timing.h +114 -0
  757. data/ext/lpsolver-highs/highs/ipm/hipo/ipm/Control.cpp +38 -0
  758. data/ext/lpsolver-highs/highs/ipm/hipo/ipm/Control.h +41 -0
  759. data/ext/lpsolver-highs/highs/ipm/hipo/ipm/FactorHiGHSSolver.cpp +887 -0
  760. data/ext/lpsolver-highs/highs/ipm/hipo/ipm/FactorHiGHSSolver.h +92 -0
  761. data/ext/lpsolver-highs/highs/ipm/hipo/ipm/Info.h +58 -0
  762. data/ext/lpsolver-highs/highs/ipm/hipo/ipm/IpmData.cpp +8 -0
  763. data/ext/lpsolver-highs/highs/ipm/hipo/ipm/IpmData.h +37 -0
  764. data/ext/lpsolver-highs/highs/ipm/hipo/ipm/Iterate.cpp +640 -0
  765. data/ext/lpsolver-highs/highs/ipm/hipo/ipm/Iterate.h +172 -0
  766. data/ext/lpsolver-highs/highs/ipm/hipo/ipm/LinearSolver.h +81 -0
  767. data/ext/lpsolver-highs/highs/ipm/hipo/ipm/LogHighs.cpp +71 -0
  768. data/ext/lpsolver-highs/highs/ipm/hipo/ipm/LogHighs.h +33 -0
  769. data/ext/lpsolver-highs/highs/ipm/hipo/ipm/Model.cpp +403 -0
  770. data/ext/lpsolver-highs/highs/ipm/hipo/ipm/Model.h +136 -0
  771. data/ext/lpsolver-highs/highs/ipm/hipo/ipm/Options.h +35 -0
  772. data/ext/lpsolver-highs/highs/ipm/hipo/ipm/Parameters.h +63 -0
  773. data/ext/lpsolver-highs/highs/ipm/hipo/ipm/PreProcess.cpp +646 -0
  774. data/ext/lpsolver-highs/highs/ipm/hipo/ipm/PreProcess.h +94 -0
  775. data/ext/lpsolver-highs/highs/ipm/hipo/ipm/Refine.cpp +214 -0
  776. data/ext/lpsolver-highs/highs/ipm/hipo/ipm/Solver.cpp +1346 -0
  777. data/ext/lpsolver-highs/highs/ipm/hipo/ipm/Solver.h +338 -0
  778. data/ext/lpsolver-highs/highs/ipm/hipo/ipm/Status.h +88 -0
  779. data/ext/lpsolver-highs/highs/ipm/ipx/basiclu_kernel.cc +71 -0
  780. data/ext/lpsolver-highs/highs/ipm/ipx/basiclu_kernel.h +20 -0
  781. data/ext/lpsolver-highs/highs/ipm/ipx/basiclu_wrapper.cc +299 -0
  782. data/ext/lpsolver-highs/highs/ipm/ipx/basiclu_wrapper.h +47 -0
  783. data/ext/lpsolver-highs/highs/ipm/ipx/basis.cc +966 -0
  784. data/ext/lpsolver-highs/highs/ipm/ipx/basis.h +350 -0
  785. data/ext/lpsolver-highs/highs/ipm/ipx/conjugate_residuals.cc +217 -0
  786. data/ext/lpsolver-highs/highs/ipm/ipx/conjugate_residuals.h +74 -0
  787. data/ext/lpsolver-highs/highs/ipm/ipx/control.cc +151 -0
  788. data/ext/lpsolver-highs/highs/ipm/ipx/control.h +167 -0
  789. data/ext/lpsolver-highs/highs/ipm/ipx/crossover.cc +479 -0
  790. data/ext/lpsolver-highs/highs/ipm/ipx/crossover.h +157 -0
  791. data/ext/lpsolver-highs/highs/ipm/ipx/diagonal_precond.cc +70 -0
  792. data/ext/lpsolver-highs/highs/ipm/ipx/diagonal_precond.h +45 -0
  793. data/ext/lpsolver-highs/highs/ipm/ipx/forrest_tomlin.cc +360 -0
  794. data/ext/lpsolver-highs/highs/ipm/ipx/forrest_tomlin.h +102 -0
  795. data/ext/lpsolver-highs/highs/ipm/ipx/guess_basis.cc +233 -0
  796. data/ext/lpsolver-highs/highs/ipm/ipx/guess_basis.h +21 -0
  797. data/ext/lpsolver-highs/highs/ipm/ipx/indexed_vector.cc +30 -0
  798. data/ext/lpsolver-highs/highs/ipm/ipx/indexed_vector.h +113 -0
  799. data/ext/lpsolver-highs/highs/ipm/ipx/info.cc +124 -0
  800. data/ext/lpsolver-highs/highs/ipm/ipx/info.h +27 -0
  801. data/ext/lpsolver-highs/highs/ipm/ipx/ipm.cc +897 -0
  802. data/ext/lpsolver-highs/highs/ipm/ipx/ipm.h +94 -0
  803. data/ext/lpsolver-highs/highs/ipm/ipx/ipx_c.cc +83 -0
  804. data/ext/lpsolver-highs/highs/ipm/ipx/ipx_c.h +47 -0
  805. data/ext/lpsolver-highs/highs/ipm/ipx/ipx_config.h +9 -0
  806. data/ext/lpsolver-highs/highs/ipm/ipx/ipx_info.h +111 -0
  807. data/ext/lpsolver-highs/highs/ipm/ipx/ipx_internal.h +89 -0
  808. data/ext/lpsolver-highs/highs/ipm/ipx/ipx_parameters.h +76 -0
  809. data/ext/lpsolver-highs/highs/ipm/ipx/ipx_status.h +57 -0
  810. data/ext/lpsolver-highs/highs/ipm/ipx/iterate.cc +683 -0
  811. data/ext/lpsolver-highs/highs/ipm/ipx/iterate.h +331 -0
  812. data/ext/lpsolver-highs/highs/ipm/ipx/kkt_solver.cc +23 -0
  813. data/ext/lpsolver-highs/highs/ipm/ipx/kkt_solver.h +70 -0
  814. data/ext/lpsolver-highs/highs/ipm/ipx/kkt_solver_basis.cc +387 -0
  815. data/ext/lpsolver-highs/highs/ipm/ipx/kkt_solver_basis.h +66 -0
  816. data/ext/lpsolver-highs/highs/ipm/ipx/kkt_solver_diag.cc +120 -0
  817. data/ext/lpsolver-highs/highs/ipm/ipx/kkt_solver_diag.h +48 -0
  818. data/ext/lpsolver-highs/highs/ipm/ipx/linear_operator.cc +10 -0
  819. data/ext/lpsolver-highs/highs/ipm/ipx/linear_operator.h +26 -0
  820. data/ext/lpsolver-highs/highs/ipm/ipx/lp_solver.cc +686 -0
  821. data/ext/lpsolver-highs/highs/ipm/ipx/lp_solver.h +204 -0
  822. data/ext/lpsolver-highs/highs/ipm/ipx/lu_factorization.cc +131 -0
  823. data/ext/lpsolver-highs/highs/ipm/ipx/lu_factorization.h +79 -0
  824. data/ext/lpsolver-highs/highs/ipm/ipx/lu_update.cc +62 -0
  825. data/ext/lpsolver-highs/highs/ipm/ipx/lu_update.h +129 -0
  826. data/ext/lpsolver-highs/highs/ipm/ipx/maxvolume.cc +337 -0
  827. data/ext/lpsolver-highs/highs/ipm/ipx/maxvolume.h +54 -0
  828. data/ext/lpsolver-highs/highs/ipm/ipx/model.cc +1528 -0
  829. data/ext/lpsolver-highs/highs/ipm/ipx/model.h +413 -0
  830. data/ext/lpsolver-highs/highs/ipm/ipx/multistream.h +52 -0
  831. data/ext/lpsolver-highs/highs/ipm/ipx/normal_matrix.cc +126 -0
  832. data/ext/lpsolver-highs/highs/ipm/ipx/normal_matrix.h +44 -0
  833. data/ext/lpsolver-highs/highs/ipm/ipx/power_method.h +44 -0
  834. data/ext/lpsolver-highs/highs/ipm/ipx/sparse_matrix.cc +382 -0
  835. data/ext/lpsolver-highs/highs/ipm/ipx/sparse_matrix.h +195 -0
  836. data/ext/lpsolver-highs/highs/ipm/ipx/sparse_utils.cc +92 -0
  837. data/ext/lpsolver-highs/highs/ipm/ipx/sparse_utils.h +58 -0
  838. data/ext/lpsolver-highs/highs/ipm/ipx/splitted_normal_matrix.cc +117 -0
  839. data/ext/lpsolver-highs/highs/ipm/ipx/splitted_normal_matrix.h +63 -0
  840. data/ext/lpsolver-highs/highs/ipm/ipx/starting_basis.cc +182 -0
  841. data/ext/lpsolver-highs/highs/ipm/ipx/starting_basis.h +39 -0
  842. data/ext/lpsolver-highs/highs/ipm/ipx/symbolic_invert.cc +183 -0
  843. data/ext/lpsolver-highs/highs/ipm/ipx/symbolic_invert.h +29 -0
  844. data/ext/lpsolver-highs/highs/ipm/ipx/timer.cc +16 -0
  845. data/ext/lpsolver-highs/highs/ipm/ipx/timer.h +25 -0
  846. data/ext/lpsolver-highs/highs/ipm/ipx/utils.cc +95 -0
  847. data/ext/lpsolver-highs/highs/ipm/ipx/utils.h +37 -0
  848. data/ext/lpsolver-highs/highs/lp_data/HConst.h +430 -0
  849. data/ext/lpsolver-highs/highs/lp_data/HStruct.h +213 -0
  850. data/ext/lpsolver-highs/highs/lp_data/Highs.cpp +4949 -0
  851. data/ext/lpsolver-highs/highs/lp_data/HighsAnalysis.h +23 -0
  852. data/ext/lpsolver-highs/highs/lp_data/HighsCallback.cpp +323 -0
  853. data/ext/lpsolver-highs/highs/lp_data/HighsCallback.h +104 -0
  854. data/ext/lpsolver-highs/highs/lp_data/HighsCallbackStruct.h +70 -0
  855. data/ext/lpsolver-highs/highs/lp_data/HighsDebug.cpp +54 -0
  856. data/ext/lpsolver-highs/highs/lp_data/HighsDebug.h +34 -0
  857. data/ext/lpsolver-highs/highs/lp_data/HighsDeprecated.cpp +181 -0
  858. data/ext/lpsolver-highs/highs/lp_data/HighsIis.cpp +1290 -0
  859. data/ext/lpsolver-highs/highs/lp_data/HighsIis.h +139 -0
  860. data/ext/lpsolver-highs/highs/lp_data/HighsInfo.cpp +426 -0
  861. data/ext/lpsolver-highs/highs/lp_data/HighsInfo.h +421 -0
  862. data/ext/lpsolver-highs/highs/lp_data/HighsInfoDebug.cpp +175 -0
  863. data/ext/lpsolver-highs/highs/lp_data/HighsInfoDebug.h +27 -0
  864. data/ext/lpsolver-highs/highs/lp_data/HighsInterface.cpp +4344 -0
  865. data/ext/lpsolver-highs/highs/lp_data/HighsLp.cpp +564 -0
  866. data/ext/lpsolver-highs/highs/lp_data/HighsLp.h +97 -0
  867. data/ext/lpsolver-highs/highs/lp_data/HighsLpSolverObject.h +47 -0
  868. data/ext/lpsolver-highs/highs/lp_data/HighsLpUtils.cpp +3794 -0
  869. data/ext/lpsolver-highs/highs/lp_data/HighsLpUtils.h +330 -0
  870. data/ext/lpsolver-highs/highs/lp_data/HighsModelUtils.cpp +1650 -0
  871. data/ext/lpsolver-highs/highs/lp_data/HighsModelUtils.h +129 -0
  872. data/ext/lpsolver-highs/highs/lp_data/HighsOptions.cpp +1176 -0
  873. data/ext/lpsolver-highs/highs/lp_data/HighsOptions.h +1715 -0
  874. data/ext/lpsolver-highs/highs/lp_data/HighsRanging.cpp +733 -0
  875. data/ext/lpsolver-highs/highs/lp_data/HighsRanging.h +43 -0
  876. data/ext/lpsolver-highs/highs/lp_data/HighsSolution.cpp +2194 -0
  877. data/ext/lpsolver-highs/highs/lp_data/HighsSolution.h +179 -0
  878. data/ext/lpsolver-highs/highs/lp_data/HighsSolutionDebug.cpp +490 -0
  879. data/ext/lpsolver-highs/highs/lp_data/HighsSolutionDebug.h +87 -0
  880. data/ext/lpsolver-highs/highs/lp_data/HighsSolve.cpp +747 -0
  881. data/ext/lpsolver-highs/highs/lp_data/HighsSolve.h +29 -0
  882. data/ext/lpsolver-highs/highs/lp_data/HighsStatus.cpp +48 -0
  883. data/ext/lpsolver-highs/highs/lp_data/HighsStatus.h +29 -0
  884. data/ext/lpsolver-highs/highs/lp_data/Iis.md +113 -0
  885. data/ext/lpsolver-highs/highs/meson.build +433 -0
  886. data/ext/lpsolver-highs/highs/mip/HighsCliqueTable.cpp +2236 -0
  887. data/ext/lpsolver-highs/highs/mip/HighsCliqueTable.h +329 -0
  888. data/ext/lpsolver-highs/highs/mip/HighsConflictPool.cpp +201 -0
  889. data/ext/lpsolver-highs/highs/mip/HighsConflictPool.h +109 -0
  890. data/ext/lpsolver-highs/highs/mip/HighsCutGeneration.cpp +1491 -0
  891. data/ext/lpsolver-highs/highs/mip/HighsCutGeneration.h +108 -0
  892. data/ext/lpsolver-highs/highs/mip/HighsCutPool.cpp +526 -0
  893. data/ext/lpsolver-highs/highs/mip/HighsCutPool.h +168 -0
  894. data/ext/lpsolver-highs/highs/mip/HighsDebugSol.cpp +313 -0
  895. data/ext/lpsolver-highs/highs/mip/HighsDebugSol.h +133 -0
  896. data/ext/lpsolver-highs/highs/mip/HighsDomain.cpp +3861 -0
  897. data/ext/lpsolver-highs/highs/mip/HighsDomain.h +657 -0
  898. data/ext/lpsolver-highs/highs/mip/HighsDomainChange.h +48 -0
  899. data/ext/lpsolver-highs/highs/mip/HighsDynamicRowMatrix.cpp +199 -0
  900. data/ext/lpsolver-highs/highs/mip/HighsDynamicRowMatrix.h +104 -0
  901. data/ext/lpsolver-highs/highs/mip/HighsFeasibilityJump.cpp +139 -0
  902. data/ext/lpsolver-highs/highs/mip/HighsGFkSolve.cpp +106 -0
  903. data/ext/lpsolver-highs/highs/mip/HighsGFkSolve.h +439 -0
  904. data/ext/lpsolver-highs/highs/mip/HighsImplications.cpp +915 -0
  905. data/ext/lpsolver-highs/highs/mip/HighsImplications.h +194 -0
  906. data/ext/lpsolver-highs/highs/mip/HighsLpAggregator.cpp +56 -0
  907. data/ext/lpsolver-highs/highs/mip/HighsLpAggregator.h +50 -0
  908. data/ext/lpsolver-highs/highs/mip/HighsLpRelaxation.cpp +1609 -0
  909. data/ext/lpsolver-highs/highs/mip/HighsLpRelaxation.h +361 -0
  910. data/ext/lpsolver-highs/highs/mip/HighsMipAnalysis.cpp +313 -0
  911. data/ext/lpsolver-highs/highs/mip/HighsMipAnalysis.h +71 -0
  912. data/ext/lpsolver-highs/highs/mip/HighsMipSolver.cpp +1002 -0
  913. data/ext/lpsolver-highs/highs/mip/HighsMipSolver.h +159 -0
  914. data/ext/lpsolver-highs/highs/mip/HighsMipSolverData.cpp +2936 -0
  915. data/ext/lpsolver-highs/highs/mip/HighsMipSolverData.h +313 -0
  916. data/ext/lpsolver-highs/highs/mip/HighsModkSeparator.cpp +267 -0
  917. data/ext/lpsolver-highs/highs/mip/HighsModkSeparator.h +60 -0
  918. data/ext/lpsolver-highs/highs/mip/HighsNodeQueue.cpp +443 -0
  919. data/ext/lpsolver-highs/highs/mip/HighsNodeQueue.h +312 -0
  920. data/ext/lpsolver-highs/highs/mip/HighsObjectiveFunction.cpp +124 -0
  921. data/ext/lpsolver-highs/highs/mip/HighsObjectiveFunction.h +71 -0
  922. data/ext/lpsolver-highs/highs/mip/HighsPathSeparator.cpp +549 -0
  923. data/ext/lpsolver-highs/highs/mip/HighsPathSeparator.h +39 -0
  924. data/ext/lpsolver-highs/highs/mip/HighsPrimalHeuristics.cpp +1673 -0
  925. data/ext/lpsolver-highs/highs/mip/HighsPrimalHeuristics.h +75 -0
  926. data/ext/lpsolver-highs/highs/mip/HighsPseudocost.cpp +129 -0
  927. data/ext/lpsolver-highs/highs/mip/HighsPseudocost.h +366 -0
  928. data/ext/lpsolver-highs/highs/mip/HighsRedcostFixing.cpp +316 -0
  929. data/ext/lpsolver-highs/highs/mip/HighsRedcostFixing.h +42 -0
  930. data/ext/lpsolver-highs/highs/mip/HighsSearch.cpp +1881 -0
  931. data/ext/lpsolver-highs/highs/mip/HighsSearch.h +241 -0
  932. data/ext/lpsolver-highs/highs/mip/HighsSeparation.cpp +186 -0
  933. data/ext/lpsolver-highs/highs/mip/HighsSeparation.h +41 -0
  934. data/ext/lpsolver-highs/highs/mip/HighsSeparator.cpp +39 -0
  935. data/ext/lpsolver-highs/highs/mip/HighsSeparator.h +60 -0
  936. data/ext/lpsolver-highs/highs/mip/HighsTableauSeparator.cpp +244 -0
  937. data/ext/lpsolver-highs/highs/mip/HighsTableauSeparator.h +34 -0
  938. data/ext/lpsolver-highs/highs/mip/HighsTransformedLp.cpp +563 -0
  939. data/ext/lpsolver-highs/highs/mip/HighsTransformedLp.h +63 -0
  940. data/ext/lpsolver-highs/highs/mip/MipTimer.h +544 -0
  941. data/ext/lpsolver-highs/highs/mip/feasibilityjump.hh +800 -0
  942. data/ext/lpsolver-highs/highs/model/HighsHessian.cpp +263 -0
  943. data/ext/lpsolver-highs/highs/model/HighsHessian.h +54 -0
  944. data/ext/lpsolver-highs/highs/model/HighsHessianUtils.cpp +584 -0
  945. data/ext/lpsolver-highs/highs/model/HighsHessianUtils.h +47 -0
  946. data/ext/lpsolver-highs/highs/model/HighsModel.cpp +46 -0
  947. data/ext/lpsolver-highs/highs/model/HighsModel.h +42 -0
  948. data/ext/lpsolver-highs/highs/parallel/HighsBinarySemaphore.h +108 -0
  949. data/ext/lpsolver-highs/highs/parallel/HighsCacheAlign.h +82 -0
  950. data/ext/lpsolver-highs/highs/parallel/HighsCombinable.h +116 -0
  951. data/ext/lpsolver-highs/highs/parallel/HighsMutex.h +124 -0
  952. data/ext/lpsolver-highs/highs/parallel/HighsParallel.h +128 -0
  953. data/ext/lpsolver-highs/highs/parallel/HighsRaceTimer.h +38 -0
  954. data/ext/lpsolver-highs/highs/parallel/HighsSchedulerConstants.h +19 -0
  955. data/ext/lpsolver-highs/highs/parallel/HighsSpinMutex.h +48 -0
  956. data/ext/lpsolver-highs/highs/parallel/HighsSplitDeque.h +606 -0
  957. data/ext/lpsolver-highs/highs/parallel/HighsTask.h +170 -0
  958. data/ext/lpsolver-highs/highs/parallel/HighsTaskExecutor.cpp +43 -0
  959. data/ext/lpsolver-highs/highs/parallel/HighsTaskExecutor.h +217 -0
  960. data/ext/lpsolver-highs/highs/pdlp/CupdlpWrapper.cpp +848 -0
  961. data/ext/lpsolver-highs/highs/pdlp/CupdlpWrapper.h +108 -0
  962. data/ext/lpsolver-highs/highs/pdlp/HiPdlpTimer.h +155 -0
  963. data/ext/lpsolver-highs/highs/pdlp/HiPdlpWrapper.cpp +141 -0
  964. data/ext/lpsolver-highs/highs/pdlp/HiPdlpWrapper.h +26 -0
  965. data/ext/lpsolver-highs/highs/pdlp/cupdlp/Diff +12 -0
  966. data/ext/lpsolver-highs/highs/pdlp/cupdlp/Meld +7 -0
  967. data/ext/lpsolver-highs/highs/pdlp/cupdlp/Merge +2 -0
  968. data/ext/lpsolver-highs/highs/pdlp/cupdlp/README.md +95 -0
  969. data/ext/lpsolver-highs/highs/pdlp/cupdlp/cuda/CMakeLists.txt +58 -0
  970. data/ext/lpsolver-highs/highs/pdlp/cupdlp/cuda/cupdlp_cuda_kernels.cu +338 -0
  971. data/ext/lpsolver-highs/highs/pdlp/cupdlp/cuda/cupdlp_cuda_kernels.cuh +319 -0
  972. data/ext/lpsolver-highs/highs/pdlp/cupdlp/cuda/cupdlp_cudalinalg.cu +386 -0
  973. data/ext/lpsolver-highs/highs/pdlp/cupdlp/cuda/cupdlp_cudalinalg.cuh +149 -0
  974. data/ext/lpsolver-highs/highs/pdlp/cupdlp/cuda/test_cublas.c +154 -0
  975. data/ext/lpsolver-highs/highs/pdlp/cupdlp/cuda/test_cuda_linalg.c +79 -0
  976. data/ext/lpsolver-highs/highs/pdlp/cupdlp/cupdlp.h +16 -0
  977. data/ext/lpsolver-highs/highs/pdlp/cupdlp/cupdlp_cs.c +214 -0
  978. data/ext/lpsolver-highs/highs/pdlp/cupdlp/cupdlp_cs.h +40 -0
  979. data/ext/lpsolver-highs/highs/pdlp/cupdlp/cupdlp_defs.h +447 -0
  980. data/ext/lpsolver-highs/highs/pdlp/cupdlp/cupdlp_linalg.c +802 -0
  981. data/ext/lpsolver-highs/highs/pdlp/cupdlp/cupdlp_linalg.h +189 -0
  982. data/ext/lpsolver-highs/highs/pdlp/cupdlp/cupdlp_proj.c +148 -0
  983. data/ext/lpsolver-highs/highs/pdlp/cupdlp/cupdlp_proj.h +19 -0
  984. data/ext/lpsolver-highs/highs/pdlp/cupdlp/cupdlp_restart.c +124 -0
  985. data/ext/lpsolver-highs/highs/pdlp/cupdlp/cupdlp_restart.h +31 -0
  986. data/ext/lpsolver-highs/highs/pdlp/cupdlp/cupdlp_scaling.c +425 -0
  987. data/ext/lpsolver-highs/highs/pdlp/cupdlp/cupdlp_scaling.h +26 -0
  988. data/ext/lpsolver-highs/highs/pdlp/cupdlp/cupdlp_solver.c +1498 -0
  989. data/ext/lpsolver-highs/highs/pdlp/cupdlp/cupdlp_solver.h +105 -0
  990. data/ext/lpsolver-highs/highs/pdlp/cupdlp/cupdlp_step.c +478 -0
  991. data/ext/lpsolver-highs/highs/pdlp/cupdlp/cupdlp_step.h +37 -0
  992. data/ext/lpsolver-highs/highs/pdlp/cupdlp/cupdlp_utils.c +1850 -0
  993. data/ext/lpsolver-highs/highs/pdlp/cupdlp/cupdlp_utils.h +212 -0
  994. data/ext/lpsolver-highs/highs/pdlp/cupdlp/glbopts.h +342 -0
  995. data/ext/lpsolver-highs/highs/pdlp/hipdlp/defs.hpp +222 -0
  996. data/ext/lpsolver-highs/highs/pdlp/hipdlp/linalg.cc +231 -0
  997. data/ext/lpsolver-highs/highs/pdlp/hipdlp/linalg.hpp +61 -0
  998. data/ext/lpsolver-highs/highs/pdlp/hipdlp/logger.cc +225 -0
  999. data/ext/lpsolver-highs/highs/pdlp/hipdlp/logger.hpp +80 -0
  1000. data/ext/lpsolver-highs/highs/pdlp/hipdlp/pdhg.cc +2798 -0
  1001. data/ext/lpsolver-highs/highs/pdlp/hipdlp/pdhg.cu +497 -0
  1002. data/ext/lpsolver-highs/highs/pdlp/hipdlp/pdhg.hpp +358 -0
  1003. data/ext/lpsolver-highs/highs/pdlp/hipdlp/pdhg_kernels.hpp +77 -0
  1004. data/ext/lpsolver-highs/highs/pdlp/hipdlp/pdlp_gpu_debug.hpp +62 -0
  1005. data/ext/lpsolver-highs/highs/pdlp/hipdlp/restart.cc +132 -0
  1006. data/ext/lpsolver-highs/highs/pdlp/hipdlp/restart.hpp +96 -0
  1007. data/ext/lpsolver-highs/highs/pdlp/hipdlp/scaling.cc +307 -0
  1008. data/ext/lpsolver-highs/highs/pdlp/hipdlp/scaling.hpp +74 -0
  1009. data/ext/lpsolver-highs/highs/pdlp/hipdlp/solver_results.hpp +65 -0
  1010. data/ext/lpsolver-highs/highs/presolve/HPresolve.cpp +8511 -0
  1011. data/ext/lpsolver-highs/highs/presolve/HPresolve.h +505 -0
  1012. data/ext/lpsolver-highs/highs/presolve/HPresolveAnalysis.cpp +239 -0
  1013. data/ext/lpsolver-highs/highs/presolve/HPresolveAnalysis.h +52 -0
  1014. data/ext/lpsolver-highs/highs/presolve/HighsPostsolveStack.cpp +1368 -0
  1015. data/ext/lpsolver-highs/highs/presolve/HighsPostsolveStack.h +943 -0
  1016. data/ext/lpsolver-highs/highs/presolve/HighsSymmetry.cpp +1921 -0
  1017. data/ext/lpsolver-highs/highs/presolve/HighsSymmetry.h +284 -0
  1018. data/ext/lpsolver-highs/highs/presolve/ICrash.cpp +474 -0
  1019. data/ext/lpsolver-highs/highs/presolve/ICrash.h +124 -0
  1020. data/ext/lpsolver-highs/highs/presolve/ICrashUtil.cpp +267 -0
  1021. data/ext/lpsolver-highs/highs/presolve/ICrashUtil.h +62 -0
  1022. data/ext/lpsolver-highs/highs/presolve/ICrashX.cpp +173 -0
  1023. data/ext/lpsolver-highs/highs/presolve/ICrashX.h +23 -0
  1024. data/ext/lpsolver-highs/highs/presolve/PresolveComponent.cpp +45 -0
  1025. data/ext/lpsolver-highs/highs/presolve/PresolveComponent.h +90 -0
  1026. data/ext/lpsolver-highs/highs/qpsolver/README.md +185 -0
  1027. data/ext/lpsolver-highs/highs/qpsolver/a_asm.cpp +139 -0
  1028. data/ext/lpsolver-highs/highs/qpsolver/a_asm.hpp +77 -0
  1029. data/ext/lpsolver-highs/highs/qpsolver/a_quass.cpp +194 -0
  1030. data/ext/lpsolver-highs/highs/qpsolver/a_quass.hpp +22 -0
  1031. data/ext/lpsolver-highs/highs/qpsolver/basis.cpp +443 -0
  1032. data/ext/lpsolver-highs/highs/qpsolver/basis.hpp +159 -0
  1033. data/ext/lpsolver-highs/highs/qpsolver/crashsolution.hpp +20 -0
  1034. data/ext/lpsolver-highs/highs/qpsolver/dantzigpricing.hpp +80 -0
  1035. data/ext/lpsolver-highs/highs/qpsolver/devexharrispricing.hpp +98 -0
  1036. data/ext/lpsolver-highs/highs/qpsolver/devexpricing.hpp +108 -0
  1037. data/ext/lpsolver-highs/highs/qpsolver/eventhandler.hpp +30 -0
  1038. data/ext/lpsolver-highs/highs/qpsolver/factor.hpp +408 -0
  1039. data/ext/lpsolver-highs/highs/qpsolver/feasibility_bounded.hpp +114 -0
  1040. data/ext/lpsolver-highs/highs/qpsolver/feasibility_highs.hpp +301 -0
  1041. data/ext/lpsolver-highs/highs/qpsolver/gradient.hpp +46 -0
  1042. data/ext/lpsolver-highs/highs/qpsolver/instance.hpp +70 -0
  1043. data/ext/lpsolver-highs/highs/qpsolver/matrix.hpp +342 -0
  1044. data/ext/lpsolver-highs/highs/qpsolver/perturbation.cpp +41 -0
  1045. data/ext/lpsolver-highs/highs/qpsolver/perturbation.hpp +15 -0
  1046. data/ext/lpsolver-highs/highs/qpsolver/pricing.hpp +22 -0
  1047. data/ext/lpsolver-highs/highs/qpsolver/qpconst.hpp +34 -0
  1048. data/ext/lpsolver-highs/highs/qpsolver/qpvector.hpp +242 -0
  1049. data/ext/lpsolver-highs/highs/qpsolver/quass.cpp +551 -0
  1050. data/ext/lpsolver-highs/highs/qpsolver/quass.hpp +27 -0
  1051. data/ext/lpsolver-highs/highs/qpsolver/ratiotest.cpp +146 -0
  1052. data/ext/lpsolver-highs/highs/qpsolver/ratiotest.hpp +26 -0
  1053. data/ext/lpsolver-highs/highs/qpsolver/reducedcosts.hpp +46 -0
  1054. data/ext/lpsolver-highs/highs/qpsolver/reducedgradient.hpp +95 -0
  1055. data/ext/lpsolver-highs/highs/qpsolver/runtime.hpp +45 -0
  1056. data/ext/lpsolver-highs/highs/qpsolver/scaling.cpp +123 -0
  1057. data/ext/lpsolver-highs/highs/qpsolver/scaling.hpp +15 -0
  1058. data/ext/lpsolver-highs/highs/qpsolver/settings.hpp +84 -0
  1059. data/ext/lpsolver-highs/highs/qpsolver/snippets.hpp +36 -0
  1060. data/ext/lpsolver-highs/highs/qpsolver/statistics.hpp +30 -0
  1061. data/ext/lpsolver-highs/highs/qpsolver/steepestedgepricing.hpp +173 -0
  1062. data/ext/lpsolver-highs/highs/simplex/HApp.h +550 -0
  1063. data/ext/lpsolver-highs/highs/simplex/HEkk.cpp +4404 -0
  1064. data/ext/lpsolver-highs/highs/simplex/HEkk.h +419 -0
  1065. data/ext/lpsolver-highs/highs/simplex/HEkkControl.cpp +146 -0
  1066. data/ext/lpsolver-highs/highs/simplex/HEkkDebug.cpp +1722 -0
  1067. data/ext/lpsolver-highs/highs/simplex/HEkkDual.cpp +3003 -0
  1068. data/ext/lpsolver-highs/highs/simplex/HEkkDual.h +513 -0
  1069. data/ext/lpsolver-highs/highs/simplex/HEkkDualMulti.cpp +1020 -0
  1070. data/ext/lpsolver-highs/highs/simplex/HEkkDualRHS.cpp +535 -0
  1071. data/ext/lpsolver-highs/highs/simplex/HEkkDualRHS.h +134 -0
  1072. data/ext/lpsolver-highs/highs/simplex/HEkkDualRow.cpp +697 -0
  1073. data/ext/lpsolver-highs/highs/simplex/HEkkDualRow.h +201 -0
  1074. data/ext/lpsolver-highs/highs/simplex/HEkkInterface.cpp +26 -0
  1075. data/ext/lpsolver-highs/highs/simplex/HEkkPrimal.cpp +2984 -0
  1076. data/ext/lpsolver-highs/highs/simplex/HEkkPrimal.h +191 -0
  1077. data/ext/lpsolver-highs/highs/simplex/HSimplex.cpp +330 -0
  1078. data/ext/lpsolver-highs/highs/simplex/HSimplex.h +42 -0
  1079. data/ext/lpsolver-highs/highs/simplex/HSimplexDebug.cpp +145 -0
  1080. data/ext/lpsolver-highs/highs/simplex/HSimplexDebug.h +48 -0
  1081. data/ext/lpsolver-highs/highs/simplex/HSimplexNla.cpp +517 -0
  1082. data/ext/lpsolver-highs/highs/simplex/HSimplexNla.h +158 -0
  1083. data/ext/lpsolver-highs/highs/simplex/HSimplexNlaDebug.cpp +373 -0
  1084. data/ext/lpsolver-highs/highs/simplex/HSimplexNlaFreeze.cpp +28 -0
  1085. data/ext/lpsolver-highs/highs/simplex/HSimplexNlaProductForm.cpp +113 -0
  1086. data/ext/lpsolver-highs/highs/simplex/HSimplexReport.cpp +77 -0
  1087. data/ext/lpsolver-highs/highs/simplex/HSimplexReport.h +21 -0
  1088. data/ext/lpsolver-highs/highs/simplex/HighsSimplexAnalysis.cpp +1495 -0
  1089. data/ext/lpsolver-highs/highs/simplex/HighsSimplexAnalysis.h +500 -0
  1090. data/ext/lpsolver-highs/highs/simplex/SimplexConst.h +273 -0
  1091. data/ext/lpsolver-highs/highs/simplex/SimplexStruct.h +263 -0
  1092. data/ext/lpsolver-highs/highs/simplex/SimplexTimer.h +414 -0
  1093. data/ext/lpsolver-highs/highs/test_kkt/DevKkt.cpp +469 -0
  1094. data/ext/lpsolver-highs/highs/test_kkt/DevKkt.h +143 -0
  1095. data/ext/lpsolver-highs/highs/test_kkt/KktCh2.cpp +305 -0
  1096. data/ext/lpsolver-highs/highs/test_kkt/KktCh2.h +79 -0
  1097. data/ext/lpsolver-highs/highs/util/FactorTimer.h +199 -0
  1098. data/ext/lpsolver-highs/highs/util/HFactor.cpp +2597 -0
  1099. data/ext/lpsolver-highs/highs/util/HFactor.h +587 -0
  1100. data/ext/lpsolver-highs/highs/util/HFactorConst.h +81 -0
  1101. data/ext/lpsolver-highs/highs/util/HFactorDebug.cpp +231 -0
  1102. data/ext/lpsolver-highs/highs/util/HFactorDebug.h +55 -0
  1103. data/ext/lpsolver-highs/highs/util/HFactorExtend.cpp +229 -0
  1104. data/ext/lpsolver-highs/highs/util/HFactorRefactor.cpp +304 -0
  1105. data/ext/lpsolver-highs/highs/util/HFactorUtils.cpp +122 -0
  1106. data/ext/lpsolver-highs/highs/util/HSet.cpp +197 -0
  1107. data/ext/lpsolver-highs/highs/util/HSet.h +89 -0
  1108. data/ext/lpsolver-highs/highs/util/HVector.h +22 -0
  1109. data/ext/lpsolver-highs/highs/util/HVectorBase.cpp +271 -0
  1110. data/ext/lpsolver-highs/highs/util/HVectorBase.h +102 -0
  1111. data/ext/lpsolver-highs/highs/util/HighsCDouble.h +323 -0
  1112. data/ext/lpsolver-highs/highs/util/HighsComponent.h +53 -0
  1113. data/ext/lpsolver-highs/highs/util/HighsDataStack.h +83 -0
  1114. data/ext/lpsolver-highs/highs/util/HighsDisjointSets.h +107 -0
  1115. data/ext/lpsolver-highs/highs/util/HighsHash.cpp +10 -0
  1116. data/ext/lpsolver-highs/highs/util/HighsHash.h +1274 -0
  1117. data/ext/lpsolver-highs/highs/util/HighsHashTree.h +1461 -0
  1118. data/ext/lpsolver-highs/highs/util/HighsInt.h +36 -0
  1119. data/ext/lpsolver-highs/highs/util/HighsIntegers.h +212 -0
  1120. data/ext/lpsolver-highs/highs/util/HighsLinearSumBounds.cpp +267 -0
  1121. data/ext/lpsolver-highs/highs/util/HighsLinearSumBounds.h +203 -0
  1122. data/ext/lpsolver-highs/highs/util/HighsMatrixPic.cpp +146 -0
  1123. data/ext/lpsolver-highs/highs/util/HighsMatrixPic.h +37 -0
  1124. data/ext/lpsolver-highs/highs/util/HighsMatrixSlice.h +561 -0
  1125. data/ext/lpsolver-highs/highs/util/HighsMatrixUtils.cpp +407 -0
  1126. data/ext/lpsolver-highs/highs/util/HighsMatrixUtils.h +57 -0
  1127. data/ext/lpsolver-highs/highs/util/HighsMemoryAllocation.h +63 -0
  1128. data/ext/lpsolver-highs/highs/util/HighsRandom.h +242 -0
  1129. data/ext/lpsolver-highs/highs/util/HighsRbTree.h +452 -0
  1130. data/ext/lpsolver-highs/highs/util/HighsSort.cpp +364 -0
  1131. data/ext/lpsolver-highs/highs/util/HighsSort.h +131 -0
  1132. data/ext/lpsolver-highs/highs/util/HighsSparseMatrix.cpp +1746 -0
  1133. data/ext/lpsolver-highs/highs/util/HighsSparseMatrix.h +151 -0
  1134. data/ext/lpsolver-highs/highs/util/HighsSparseVectorSum.h +95 -0
  1135. data/ext/lpsolver-highs/highs/util/HighsSplay.h +135 -0
  1136. data/ext/lpsolver-highs/highs/util/HighsTimer.h +385 -0
  1137. data/ext/lpsolver-highs/highs/util/HighsUtils.cpp +1259 -0
  1138. data/ext/lpsolver-highs/highs/util/HighsUtils.h +272 -0
  1139. data/ext/lpsolver-highs/highs/util/stringutil.cpp +131 -0
  1140. data/ext/lpsolver-highs/highs/util/stringutil.h +46 -0
  1141. data/ext/lpsolver-highs/highs.pc.in +12 -0
  1142. data/ext/lpsolver-highs/meson.build +198 -0
  1143. data/ext/lpsolver-highs/meson_options.txt +31 -0
  1144. data/ext/lpsolver-highs/nuget/HiGHS_Logo.png +0 -0
  1145. data/ext/lpsolver-highs/nuget/Highs.csproj +25 -0
  1146. data/ext/lpsolver-highs/nuget/Highs.csproj.in +36 -0
  1147. data/ext/lpsolver-highs/nuget/HowToAlternative.md +77 -0
  1148. data/ext/lpsolver-highs/nuget/README.md +38 -0
  1149. data/ext/lpsolver-highs/nuget/arm-toolchain.cmake +15 -0
  1150. data/ext/lpsolver-highs/nuget/build_linux-arm.sh +13 -0
  1151. data/ext/lpsolver-highs/nuget/build_linux.sh +10 -0
  1152. data/ext/lpsolver-highs/nuget/build_windows.ps1 +27 -0
  1153. data/ext/lpsolver-highs/nuget/generatePackage.ps1 +28 -0
  1154. data/ext/lpsolver-highs/pyproject.toml +221 -0
  1155. data/ext/lpsolver-highs/subprojects/pybind11.wrap +13 -0
  1156. data/ext/lpsolver-highs/tests/test_highspy.py +2310 -0
  1157. data/ext/lpsolver-highs/version.rc.in +50 -0
  1158. data/lib/lpsolver/highs +0 -0
  1159. data/lib/lpsolver/model.rb +35 -7
  1160. data/lib/lpsolver/native.so +0 -0
  1161. data/lib/lpsolver/native_model.rb +261 -0
  1162. data/lib/lpsolver/solution.rb +93 -8
  1163. data/lib/lpsolver/version.rb +1 -1
  1164. data/lpsolver.gemspec +4 -1
  1165. metadata +1176 -4
@@ -0,0 +1,2310 @@
1
+ *NAME: dcmulti
2
+ *ROWS: 290
3
+ *COLUMNS: 548
4
+ *INTEGER: 75
5
+ *NONZERO: 1315
6
+ *BEST SOLN: 188182.0000
7
+ *LP SOLN: 183975.5397
8
+ *SOURCE:
9
+ * Jeremy F. Shapiro (MIT Sloan School of Management)
10
+ * Jonathan Eckstein (Thinking Machines Corporation)
11
+ *APPLICATION: multi-period facility location
12
+ *COMMENTS: all integer variables are binary
13
+ *
14
+ NAME DCMULTI
15
+ ROWS
16
+ N 1
17
+ L 2
18
+ L 3
19
+ L 4
20
+ L 5
21
+ L 6
22
+ L 7
23
+ L 8
24
+ L 9
25
+ L 10
26
+ L 11
27
+ L 12
28
+ L 13
29
+ E 14
30
+ E 15
31
+ E 16
32
+ E 17
33
+ E 18
34
+ E 19
35
+ E 20
36
+ E 21
37
+ E 22
38
+ E 23
39
+ E 24
40
+ E 25
41
+ L 26
42
+ L 27
43
+ L 28
44
+ L 29
45
+ E 30
46
+ L 31
47
+ G 32
48
+ L 33
49
+ E 34
50
+ E 35
51
+ L 36
52
+ L 37
53
+ L 38
54
+ L 39
55
+ E 40
56
+ L 41
57
+ G 42
58
+ L 43
59
+ E 44
60
+ E 45
61
+ L 46
62
+ L 47
63
+ L 48
64
+ L 49
65
+ E 50
66
+ L 51
67
+ G 52
68
+ L 53
69
+ E 54
70
+ E 55
71
+ L 56
72
+ L 57
73
+ L 58
74
+ L 59
75
+ E 60
76
+ L 61
77
+ G 62
78
+ L 63
79
+ E 64
80
+ E 65
81
+ L 66
82
+ L 67
83
+ L 68
84
+ L 69
85
+ E 70
86
+ L 71
87
+ G 72
88
+ L 73
89
+ E 74
90
+ L 75
91
+ L 76
92
+ L 77
93
+ L 78
94
+ G 79
95
+ G 80
96
+ G 81
97
+ G 82
98
+ G 83
99
+ G 84
100
+ G 85
101
+ G 86
102
+ G 87
103
+ G 88
104
+ G 89
105
+ G 90
106
+ G 91
107
+ G 92
108
+ G 93
109
+ G 94
110
+ G 95
111
+ G 96
112
+ L 97
113
+ L 98
114
+ L 99
115
+ L 100
116
+ L 101
117
+ L 102
118
+ L 103
119
+ L 104
120
+ L 105
121
+ L 106
122
+ L 107
123
+ L 108
124
+ E 109
125
+ E 110
126
+ E 111
127
+ E 112
128
+ E 113
129
+ E 114
130
+ E 115
131
+ E 116
132
+ E 117
133
+ E 118
134
+ E 119
135
+ E 120
136
+ L 121
137
+ L 122
138
+ L 123
139
+ L 124
140
+ E 125
141
+ L 126
142
+ G 127
143
+ L 128
144
+ E 129
145
+ E 130
146
+ L 131
147
+ L 132
148
+ L 133
149
+ L 134
150
+ E 135
151
+ L 136
152
+ G 137
153
+ L 138
154
+ E 139
155
+ E 140
156
+ L 141
157
+ L 142
158
+ L 143
159
+ L 144
160
+ E 145
161
+ L 146
162
+ G 147
163
+ L 148
164
+ E 149
165
+ E 150
166
+ L 151
167
+ L 152
168
+ L 153
169
+ L 154
170
+ E 155
171
+ L 156
172
+ G 157
173
+ L 158
174
+ E 159
175
+ E 160
176
+ L 161
177
+ L 162
178
+ L 163
179
+ L 164
180
+ E 165
181
+ L 166
182
+ G 167
183
+ L 168
184
+ E 169
185
+ L 170
186
+ L 171
187
+ L 172
188
+ L 173
189
+ G 174
190
+ G 175
191
+ G 176
192
+ G 177
193
+ G 178
194
+ G 179
195
+ G 180
196
+ G 181
197
+ G 182
198
+ G 183
199
+ G 184
200
+ G 185
201
+ G 186
202
+ G 187
203
+ G 188
204
+ G 189
205
+ G 190
206
+ G 191
207
+ L 192
208
+ L 193
209
+ L 194
210
+ L 195
211
+ L 196
212
+ L 197
213
+ L 198
214
+ L 199
215
+ L 200
216
+ L 201
217
+ L 202
218
+ L 203
219
+ E 204
220
+ E 205
221
+ E 206
222
+ E 207
223
+ E 208
224
+ E 209
225
+ E 210
226
+ E 211
227
+ E 212
228
+ E 213
229
+ E 214
230
+ E 215
231
+ L 216
232
+ L 217
233
+ L 218
234
+ L 219
235
+ E 220
236
+ L 221
237
+ G 222
238
+ L 223
239
+ E 224
240
+ E 225
241
+ L 226
242
+ L 227
243
+ L 228
244
+ L 229
245
+ E 230
246
+ L 231
247
+ G 232
248
+ L 233
249
+ E 234
250
+ E 235
251
+ L 236
252
+ L 237
253
+ L 238
254
+ L 239
255
+ E 240
256
+ L 241
257
+ G 242
258
+ L 243
259
+ E 244
260
+ E 245
261
+ L 246
262
+ L 247
263
+ L 248
264
+ L 249
265
+ E 250
266
+ L 251
267
+ G 252
268
+ L 253
269
+ E 254
270
+ E 255
271
+ L 256
272
+ L 257
273
+ L 258
274
+ L 259
275
+ E 260
276
+ L 261
277
+ G 262
278
+ L 263
279
+ E 264
280
+ L 265
281
+ L 266
282
+ L 267
283
+ L 268
284
+ G 269
285
+ G 270
286
+ G 271
287
+ G 272
288
+ G 273
289
+ G 274
290
+ G 275
291
+ G 276
292
+ G 277
293
+ G 278
294
+ G 279
295
+ G 280
296
+ G 281
297
+ G 282
298
+ G 283
299
+ G 284
300
+ G 285
301
+ G 286
302
+ L 287
303
+ L 288
304
+ L 289
305
+ L 290
306
+ L 291
307
+ COLUMNS
308
+ MARK0000 'MARKER' 'INTORG'
309
+ D111 26 -600.00000
310
+ D111 27 180.00000
311
+ D121 28 -300.00000
312
+ D121 29 80.00000000
313
+ D211 36 -600.00000
314
+ D211 37 180.00000
315
+ D221 38 -300.00000
316
+ D221 39 80.00000000
317
+ D311 46 -600.00000
318
+ D311 47 180.00000
319
+ D321 48 -300.00000
320
+ D321 49 80.00000000
321
+ D411 56 -600.00000
322
+ D411 57 180.00000
323
+ D421 58 -300.00000
324
+ D421 59 80.00000000
325
+ D511 66 -600.00000
326
+ D511 67 180.00000
327
+ D521 68 -300.00000
328
+ D521 69 80.00000000
329
+ G11 1 300.00000
330
+ G11 31 -350.00000
331
+ G11 32 -200.00000
332
+ G11 33 1.00000000
333
+ G11 74 -1.00000000
334
+ G21 1 350.00000
335
+ G21 41 -500.00000
336
+ G21 42 -350.00000
337
+ G21 43 1.00000000
338
+ G21 74 -1.00000000
339
+ G31 1 250.00000
340
+ G31 51 -225.00000
341
+ G31 52 -100.00000
342
+ G31 53 1.00000000
343
+ G31 74 -1.00000000
344
+ G41 1 375.00000
345
+ G41 61 -410.00000
346
+ G41 62 -200.00000
347
+ G41 63 1.00000000
348
+ G41 74 -1.00000000
349
+ G51 1 200.00000
350
+ G51 71 -320.00000
351
+ G51 72 -100.00000
352
+ G51 73 1.00000000
353
+ G51 74 -1.00000000
354
+ H11 1 1000.00000
355
+ H11 74 1.00000000
356
+ H11 75 -1.00000000
357
+ H21 1 410.00000
358
+ H21 74 1.00000000
359
+ H21 75 1.00000000
360
+ H21 76 -1.00000000
361
+ H31 1 320.00000
362
+ H31 74 1.00000000
363
+ H31 76 1.00000000
364
+ H31 77 -1.00000000
365
+ H41 1 270.00000
366
+ H41 74 1.00000000
367
+ H41 77 1.00000000
368
+ H41 78 -1.00000000
369
+ H51 1 240.00000
370
+ H51 74 1.00000000
371
+ H51 78 1.00000000
372
+ B11 1 1500.00000
373
+ B11 33 -1.00000000
374
+ B11 128 -1.00000000
375
+ B11 223 -1.00000000
376
+ B11 287 1.00000000
377
+ B21 1 1200.00000
378
+ B21 43 -1.00000000
379
+ B21 138 -1.00000000
380
+ B21 233 -1.00000000
381
+ B21 288 1.00000000
382
+ B31 1 1125.00000
383
+ B31 53 -1.00000000
384
+ B31 148 -1.00000000
385
+ B31 243 -1.00000000
386
+ B31 289 1.00000000
387
+ B41 1 1800.00000
388
+ B41 63 -1.00000000
389
+ B41 158 -1.00000000
390
+ B41 253 -1.00000000
391
+ B41 290 1.00000000
392
+ B51 1 1050.00000
393
+ B51 73 -1.00000000
394
+ B51 168 -1.00000000
395
+ B51 263 -1.00000000
396
+ B51 291 1.00000000
397
+ D112 121 -600.00000
398
+ D112 122 180.00000
399
+ D122 123 -300.00000
400
+ D122 124 80.00000000
401
+ D212 131 -600.00000
402
+ D212 132 180.00000
403
+ D222 133 -300.00000
404
+ D222 134 80.00000000
405
+ D312 141 -600.00000
406
+ D312 142 180.00000
407
+ D322 143 -300.00000
408
+ D322 144 80.00000000
409
+ D412 151 -600.00000
410
+ D412 152 180.00000
411
+ D422 153 -300.00000
412
+ D422 154 80.00000000
413
+ D512 161 -600.00000
414
+ D512 162 180.00000
415
+ D522 163 -300.00000
416
+ D522 164 80.00000000
417
+ G12 1 300.00000
418
+ G12 126 -350.00000
419
+ G12 127 -200.00000
420
+ G12 128 1.00000000
421
+ G12 169 -1.00000000
422
+ G22 1 350.00000
423
+ G22 136 -500.00000
424
+ G22 137 -350.00000
425
+ G22 138 1.00000000
426
+ G22 169 -1.00000000
427
+ G32 1 250.00000
428
+ G32 146 -225.00000
429
+ G32 147 -100.00000
430
+ G32 148 1.00000000
431
+ G32 169 -1.00000000
432
+ G42 1 375.00000
433
+ G42 156 -410.00000
434
+ G42 157 -200.00000
435
+ G42 158 1.00000000
436
+ G42 169 -1.00000000
437
+ G52 1 200.00000
438
+ G52 166 -320.00000
439
+ G52 167 -100.00000
440
+ G52 168 1.00000000
441
+ G52 169 -1.00000000
442
+ H12 1 1000.00000
443
+ H12 169 1.00000000
444
+ H12 170 -1.00000000
445
+ H22 1 410.00000
446
+ H22 169 1.00000000
447
+ H22 170 1.00000000
448
+ H22 171 -1.00000000
449
+ H32 1 320.00000
450
+ H32 169 1.00000000
451
+ H32 171 1.00000000
452
+ H32 172 -1.00000000
453
+ H42 1 270.00000
454
+ H42 169 1.00000000
455
+ H42 172 1.00000000
456
+ H42 173 -1.00000000
457
+ H52 1 240.00000
458
+ H52 169 1.00000000
459
+ H52 173 1.00000000
460
+ B12 1 1000.00000
461
+ B12 128 -1.00000000
462
+ B12 223 -1.00000000
463
+ B12 287 1.00000000
464
+ B22 1 800.00000
465
+ B22 138 -1.00000000
466
+ B22 233 -1.00000000
467
+ B22 288 1.00000000
468
+ B32 1 750.00000
469
+ B32 148 -1.00000000
470
+ B32 243 -1.00000000
471
+ B32 289 1.00000000
472
+ B42 1 1200.00000
473
+ B42 158 -1.00000000
474
+ B42 253 -1.00000000
475
+ B42 290 1.00000000
476
+ B52 1 700.00000
477
+ B52 168 -1.00000000
478
+ B52 263 -1.00000000
479
+ B52 291 1.00000000
480
+ D113 216 -600.00000
481
+ D113 217 180.00000
482
+ D123 218 -300.00000
483
+ D123 219 80.00000000
484
+ D213 226 -600.00000
485
+ D213 227 180.00000
486
+ D223 228 -300.00000
487
+ D223 229 80.00000000
488
+ D313 236 -600.00000
489
+ D313 237 180.00000
490
+ D323 238 -300.00000
491
+ D323 239 80.00000000
492
+ D413 246 -600.00000
493
+ D413 247 180.00000
494
+ D423 248 -300.00000
495
+ D423 249 80.00000000
496
+ D513 256 -600.00000
497
+ D513 257 180.00000
498
+ D523 258 -300.00000
499
+ D523 259 80.00000000
500
+ G13 1 300.00000
501
+ G13 221 -350.00000
502
+ G13 222 -200.00000
503
+ G13 223 1.00000000
504
+ G13 264 -1.00000000
505
+ G23 1 350.00000
506
+ G23 231 -500.00000
507
+ G23 232 -350.00000
508
+ G23 233 1.00000000
509
+ G23 264 -1.00000000
510
+ G33 1 250.00000
511
+ G33 241 -225.00000
512
+ G33 242 -100.00000
513
+ G33 243 1.00000000
514
+ G33 264 -1.00000000
515
+ G43 1 375.00000
516
+ G43 251 -410.00000
517
+ G43 252 -200.00000
518
+ G43 253 1.00000000
519
+ G43 264 -1.00000000
520
+ G53 1 200.00000
521
+ G53 261 -320.00000
522
+ G53 262 -100.00000
523
+ G53 263 1.00000000
524
+ G53 264 -1.00000000
525
+ H13 1 1000.00000
526
+ H13 264 1.00000000
527
+ H13 265 -1.00000000
528
+ H23 1 410.00000
529
+ H23 264 1.00000000
530
+ H23 265 1.00000000
531
+ H23 266 -1.00000000
532
+ H33 1 320.00000
533
+ H33 264 1.00000000
534
+ H33 266 1.00000000
535
+ H33 267 -1.00000000
536
+ H43 1 270.00000
537
+ H43 264 1.00000000
538
+ H43 267 1.00000000
539
+ H43 268 -1.00000000
540
+ H53 1 40.00000000
541
+ H53 264 1.00000000
542
+ H53 268 1.00000000
543
+ B13 1 500.00000
544
+ B13 223 -1.00000000
545
+ B13 287 1.00000000
546
+ B23 1 400.00000
547
+ B23 233 -1.00000000
548
+ B23 288 1.00000000
549
+ B33 1 375.00000
550
+ B33 243 -1.00000000
551
+ B33 289 1.00000000
552
+ B43 1 600.00000
553
+ B43 253 -1.00000000
554
+ B43 290 1.00000000
555
+ B53 1 350.00000
556
+ B53 263 -1.00000000
557
+ B53 291 1.00000000
558
+ MARK0001 'MARKER' 'INTEND'
559
+ X1111 1 6.00000000
560
+ X1111 2 1.00000000
561
+ X1111 14 1.00000000
562
+ X1111 24 -1.00000000
563
+ X1211 1 8.00000000
564
+ X1211 2 1.00000000
565
+ X1211 16 1.00000000
566
+ X1211 34 -1.00000000
567
+ X1311 1 10.10000000
568
+ X1311 2 1.00000000
569
+ X1311 18 1.00000000
570
+ X1311 44 -1.00000000
571
+ X1411 1 13.00000000
572
+ X1411 2 1.00000000
573
+ X1411 20 1.00000000
574
+ X1411 54 -1.00000000
575
+ X1511 1 15.50000000
576
+ X1511 2 1.00000000
577
+ X1511 22 1.00000000
578
+ X1511 64 -1.00000000
579
+ X2111 1 12.90000000
580
+ X2111 4 1.00000000
581
+ X2111 14 1.00000000
582
+ X2111 24 -1.00000000
583
+ X2211 1 6.20000000
584
+ X2211 4 1.00000000
585
+ X2211 16 1.00000000
586
+ X2211 34 -1.00000000
587
+ X2311 1 5.00000000
588
+ X2311 4 1.00000000
589
+ X2311 18 1.00000000
590
+ X2311 44 -1.00000000
591
+ X2411 1 9.60000000
592
+ X2411 4 1.00000000
593
+ X2411 20 1.00000000
594
+ X2411 54 -1.00000000
595
+ X2511 1 4.90000000
596
+ X2511 4 1.00000000
597
+ X2511 22 1.00000000
598
+ X2511 64 -1.00000000
599
+ X3111 1 12.20000000
600
+ X3111 6 1.00000000
601
+ X3111 14 1.00000000
602
+ X3111 24 -1.00000000
603
+ X3211 1 12.30000000
604
+ X3211 6 1.00000000
605
+ X3211 16 1.00000000
606
+ X3211 34 -1.00000000
607
+ X3311 1 8.30000000
608
+ X3311 6 1.00000000
609
+ X3311 18 1.00000000
610
+ X3311 44 -1.00000000
611
+ X3411 1 4.20000000
612
+ X3411 6 1.00000000
613
+ X3411 20 1.00000000
614
+ X3411 54 -1.00000000
615
+ X3511 1 5.20000000
616
+ X3511 6 1.00000000
617
+ X3511 22 1.00000000
618
+ X3511 64 -1.00000000
619
+ Y1111 1 2.30000000
620
+ Y1111 14 -1.00000000
621
+ Y1111 79 1.00000000
622
+ Y1211 1 6.70000000
623
+ Y1211 14 -1.00000000
624
+ Y1211 81 1.00000000
625
+ Y1311 1 12.00000000
626
+ Y1311 14 -1.00000000
627
+ Y1311 83 1.00000000
628
+ Y1411 1 4.50000000
629
+ Y1411 14 -1.00000000
630
+ Y1411 85 1.00000000
631
+ Y1511 1 8.00000000
632
+ Y1511 14 -1.00000000
633
+ Y1511 87 1.00000000
634
+ Y1611 1 12.50000000
635
+ Y1611 14 -1.00000000
636
+ Y1611 89 1.00000000
637
+ Y1711 1 9.80000000
638
+ Y1711 14 -1.00000000
639
+ Y1711 91 1.00000000
640
+ Y1811 1 12.00000000
641
+ Y1811 14 -1.00000000
642
+ Y1811 93 1.00000000
643
+ Y1911 1 15.50000000
644
+ Y1911 14 -1.00000000
645
+ Y1911 95 1.00000000
646
+ Y2111 1 7.30000000
647
+ Y2111 16 -1.00000000
648
+ Y2111 79 1.00000000
649
+ Y2211 1 4.20000000
650
+ Y2211 16 -1.00000000
651
+ Y2211 81 1.00000000
652
+ Y2311 1 5.70000000
653
+ Y2311 16 -1.00000000
654
+ Y2311 83 1.00000000
655
+ Y2411 1 6.00000000
656
+ Y2411 16 -1.00000000
657
+ Y2411 85 1.00000000
658
+ Y2511 1 1.50000000
659
+ Y2511 16 -1.00000000
660
+ Y2511 87 1.00000000
661
+ Y2611 1 4.30000000
662
+ Y2611 16 -1.00000000
663
+ Y2611 89 1.00000000
664
+ Y2711 1 8.90000000
665
+ Y2711 16 -1.00000000
666
+ Y2711 91 1.00000000
667
+ Y2811 1 6.70000000
668
+ Y2811 16 -1.00000000
669
+ Y2811 93 1.00000000
670
+ Y2911 1 7.60000000
671
+ Y2911 16 -1.00000000
672
+ Y2911 95 1.00000000
673
+ Y3111 1 8.00000000
674
+ Y3111 18 -1.00000000
675
+ Y3111 79 1.00000000
676
+ Y3211 1 7.30000000
677
+ Y3211 18 -1.00000000
678
+ Y3211 81 1.00000000
679
+ Y3311 1 9.60000000
680
+ Y3311 18 -1.00000000
681
+ Y3311 83 1.00000000
682
+ Y3411 1 3.50000000
683
+ Y3411 18 -1.00000000
684
+ Y3411 85 1.00000000
685
+ Y3511 1 2.40000000
686
+ Y3511 18 -1.00000000
687
+ Y3511 87 1.00000000
688
+ Y3611 1 7.00000000
689
+ Y3611 18 -1.00000000
690
+ Y3611 89 1.00000000
691
+ Y3711 1 5.00000000
692
+ Y3711 18 -1.00000000
693
+ Y3711 91 1.00000000
694
+ Y3811 1 4.10000000
695
+ Y3811 18 -1.00000000
696
+ Y3811 93 1.00000000
697
+ Y3911 1 7.90000000
698
+ Y3911 18 -1.00000000
699
+ Y3911 95 1.00000000
700
+ Y4111 1 9.50000000
701
+ Y4111 20 -1.00000000
702
+ Y4111 79 1.00000000
703
+ Y4211 1 12.00000000
704
+ Y4211 20 -1.00000000
705
+ Y4211 81 1.00000000
706
+ Y4311 1 15.00000000
707
+ Y4311 20 -1.00000000
708
+ Y4311 83 1.00000000
709
+ Y4411 1 4.40000000
710
+ Y4411 20 -1.00000000
711
+ Y4411 85 1.00000000
712
+ Y4511 1 8.20000000
713
+ Y4511 20 -1.00000000
714
+ Y4511 87 1.00000000
715
+ Y4611 1 12.80000000
716
+ Y4611 20 -1.00000000
717
+ Y4611 89 1.00000000
718
+ Y4711 1 2.70000000
719
+ Y4711 20 -1.00000000
720
+ Y4711 91 1.00000000
721
+ Y4811 1 7.50000000
722
+ Y4811 20 -1.00000000
723
+ Y4811 93 1.00000000
724
+ Y4911 1 12.50000000
725
+ Y4911 20 -1.00000000
726
+ Y4911 95 1.00000000
727
+ Y5111 1 17.80000000
728
+ Y5111 22 -1.00000000
729
+ Y5111 79 1.00000000
730
+ Y5211 1 12.80000000
731
+ Y5211 22 -1.00000000
732
+ Y5211 81 1.00000000
733
+ Y5311 1 14.30000000
734
+ Y5311 22 -1.00000000
735
+ Y5311 83 1.00000000
736
+ Y5411 1 7.90000000
737
+ Y5411 22 -1.00000000
738
+ Y5411 85 1.00000000
739
+ Y5511 1 7.40000000
740
+ Y5511 22 -1.00000000
741
+ Y5511 87 1.00000000
742
+ Y5611 1 10.00000000
743
+ Y5611 22 -1.00000000
744
+ Y5611 89 1.00000000
745
+ Y5711 1 3.40000000
746
+ Y5711 22 -1.00000000
747
+ Y5711 91 1.00000000
748
+ Y5811 1 2.50000000
749
+ Y5811 22 -1.00000000
750
+ Y5811 93 1.00000000
751
+ Y5911 1 7.20000000
752
+ Y5911 22 -1.00000000
753
+ Y5911 95 1.00000000
754
+ X1121 1 12.00000000
755
+ X1121 3 1.00000000
756
+ X1121 15 1.00000000
757
+ X1121 25 -1.00000000
758
+ X1221 1 16.00000000
759
+ X1221 3 1.00000000
760
+ X1221 17 1.00000000
761
+ X1221 35 -1.00000000
762
+ X1321 1 20.20000000
763
+ X1321 3 1.00000000
764
+ X1321 19 1.00000000
765
+ X1321 45 -1.00000000
766
+ X1421 1 26.00000000
767
+ X1421 3 1.00000000
768
+ X1421 21 1.00000000
769
+ X1421 55 -1.00000000
770
+ X1521 1 31.00000000
771
+ X1521 3 1.00000000
772
+ X1521 23 1.00000000
773
+ X1521 65 -1.00000000
774
+ X2121 1 25.80000000
775
+ X2121 5 1.00000000
776
+ X2121 15 1.00000000
777
+ X2121 25 -1.00000000
778
+ X2221 1 12.40000000
779
+ X2221 5 1.00000000
780
+ X2221 17 1.00000000
781
+ X2221 35 -1.00000000
782
+ X2321 1 10.00000000
783
+ X2321 5 1.00000000
784
+ X2321 19 1.00000000
785
+ X2321 45 -1.00000000
786
+ X2421 1 19.20000000
787
+ X2421 5 1.00000000
788
+ X2421 21 1.00000000
789
+ X2421 55 -1.00000000
790
+ X2521 1 9.80000000
791
+ X2521 5 1.00000000
792
+ X2521 23 1.00000000
793
+ X2521 65 -1.00000000
794
+ X3121 1 24.40000000
795
+ X3121 7 1.00000000
796
+ X3121 15 1.00000000
797
+ X3121 25 -1.00000000
798
+ X3221 1 24.60000000
799
+ X3221 7 1.00000000
800
+ X3221 17 1.00000000
801
+ X3221 35 -1.00000000
802
+ X3321 1 16.60000000
803
+ X3321 7 1.00000000
804
+ X3321 19 1.00000000
805
+ X3321 45 -1.00000000
806
+ X3421 1 8.40000000
807
+ X3421 7 1.00000000
808
+ X3421 21 1.00000000
809
+ X3421 55 -1.00000000
810
+ X3521 1 10.40000000
811
+ X3521 7 1.00000000
812
+ X3521 23 1.00000000
813
+ X3521 65 -1.00000000
814
+ Y1121 1 4.60000000
815
+ Y1121 15 -1.00000000
816
+ Y1121 80 1.00000000
817
+ Y1221 1 13.40000000
818
+ Y1221 15 -1.00000000
819
+ Y1221 82 1.00000000
820
+ Y1321 1 24.00000000
821
+ Y1321 15 -1.00000000
822
+ Y1321 84 1.00000000
823
+ Y1421 1 9.00000000
824
+ Y1421 15 -1.00000000
825
+ Y1421 86 1.00000000
826
+ Y1521 1 16.00000000
827
+ Y1521 15 -1.00000000
828
+ Y1521 88 1.00000000
829
+ Y1621 1 25.00000000
830
+ Y1621 15 -1.00000000
831
+ Y1621 90 1.00000000
832
+ Y1721 1 19.60000000
833
+ Y1721 15 -1.00000000
834
+ Y1721 92 1.00000000
835
+ Y1821 1 24.00000000
836
+ Y1821 15 -1.00000000
837
+ Y1821 94 1.00000000
838
+ Y1921 1 31.00000000
839
+ Y1921 15 -1.00000000
840
+ Y1921 96 1.00000000
841
+ Y2121 1 14.60000000
842
+ Y2121 17 -1.00000000
843
+ Y2121 80 1.00000000
844
+ Y2221 1 8.40000000
845
+ Y2221 17 -1.00000000
846
+ Y2221 82 1.00000000
847
+ Y2321 1 11.40000000
848
+ Y2321 17 -1.00000000
849
+ Y2321 84 1.00000000
850
+ Y2421 1 12.00000000
851
+ Y2421 17 -1.00000000
852
+ Y2421 86 1.00000000
853
+ Y2521 1 3.00000000
854
+ Y2521 17 -1.00000000
855
+ Y2521 88 1.00000000
856
+ Y2621 1 8.60000000
857
+ Y2621 17 -1.00000000
858
+ Y2621 90 1.00000000
859
+ Y2721 1 17.80000000
860
+ Y2721 17 -1.00000000
861
+ Y2721 92 1.00000000
862
+ Y2821 1 13.40000000
863
+ Y2821 17 -1.00000000
864
+ Y2821 94 1.00000000
865
+ Y2921 1 15.20000000
866
+ Y2921 17 -1.00000000
867
+ Y2921 96 1.00000000
868
+ Y3121 1 16.00000000
869
+ Y3121 19 -1.00000000
870
+ Y3121 80 1.00000000
871
+ Y3221 1 14.60000000
872
+ Y3221 19 -1.00000000
873
+ Y3221 82 1.00000000
874
+ Y3321 1 19.20000000
875
+ Y3321 19 -1.00000000
876
+ Y3321 84 1.00000000
877
+ Y3421 1 7.00000000
878
+ Y3421 19 -1.00000000
879
+ Y3421 86 1.00000000
880
+ Y3521 1 4.80000000
881
+ Y3521 19 -1.00000000
882
+ Y3521 88 1.00000000
883
+ Y3621 1 14.00000000
884
+ Y3621 19 -1.00000000
885
+ Y3621 90 1.00000000
886
+ Y3721 1 10.00000000
887
+ Y3721 19 -1.00000000
888
+ Y3721 92 1.00000000
889
+ Y3821 1 8.20000000
890
+ Y3821 19 -1.00000000
891
+ Y3821 94 1.00000000
892
+ Y3921 1 15.80000000
893
+ Y3921 19 -1.00000000
894
+ Y3921 96 1.00000000
895
+ Y4121 1 19.00000000
896
+ Y4121 21 -1.00000000
897
+ Y4121 80 1.00000000
898
+ Y4221 1 24.00000000
899
+ Y4221 21 -1.00000000
900
+ Y4221 82 1.00000000
901
+ Y4321 1 30.00000000
902
+ Y4321 21 -1.00000000
903
+ Y4321 84 1.00000000
904
+ Y4421 1 8.80000000
905
+ Y4421 21 -1.00000000
906
+ Y4421 86 1.00000000
907
+ Y4521 1 16.40000000
908
+ Y4521 21 -1.00000000
909
+ Y4521 88 1.00000000
910
+ Y4621 1 25.60000000
911
+ Y4621 21 -1.00000000
912
+ Y4621 90 1.00000000
913
+ Y4721 1 5.40000000
914
+ Y4721 21 -1.00000000
915
+ Y4721 92 1.00000000
916
+ Y4821 1 15.00000000
917
+ Y4821 21 -1.00000000
918
+ Y4821 94 1.00000000
919
+ Y4921 1 25.00000000
920
+ Y4921 21 -1.00000000
921
+ Y4921 96 1.00000000
922
+ Y5121 1 35.60000000
923
+ Y5121 23 -1.00000000
924
+ Y5121 80 1.00000000
925
+ Y5221 1 25.60000000
926
+ Y5221 23 -1.00000000
927
+ Y5221 82 1.00000000
928
+ Y5321 1 28.60000000
929
+ Y5321 23 -1.00000000
930
+ Y5321 84 1.00000000
931
+ Y5421 1 15.80000000
932
+ Y5421 23 -1.00000000
933
+ Y5421 86 1.00000000
934
+ Y5521 1 14.80000000
935
+ Y5521 23 -1.00000000
936
+ Y5521 88 1.00000000
937
+ Y5621 1 20.00000000
938
+ Y5621 23 -1.00000000
939
+ Y5621 90 1.00000000
940
+ Y5721 1 6.80000000
941
+ Y5721 23 -1.00000000
942
+ Y5721 92 1.00000000
943
+ Y5821 1 5.00000000
944
+ Y5821 23 -1.00000000
945
+ Y5821 94 1.00000000
946
+ Y5921 1 14.40000000
947
+ Y5921 23 -1.00000000
948
+ Y5921 96 1.00000000
949
+ S111 1 50.00000000
950
+ S111 2 -1.00000000
951
+ S111 8 1.00000000
952
+ S211 1 60.00000000
953
+ S211 4 -1.00000000
954
+ S211 9 1.00000000
955
+ S311 1 70.00000000
956
+ S311 6 -1.00000000
957
+ S311 10 1.00000000
958
+ S121 1 105.00000
959
+ S121 3 -1.00000000
960
+ S121 11 1.00000000
961
+ S221 1 95.00000000
962
+ S221 5 -1.00000000
963
+ S221 12 1.00000000
964
+ S321 1 133.00000
965
+ S321 7 -1.00000000
966
+ S321 13 1.00000000
967
+ Z1111 1 2.00000000
968
+ Z1111 24 1.00000000
969
+ Z1111 27 -1.00000000
970
+ Z1111 30 -1.00000000
971
+ Z1121 1 1.70000000
972
+ Z1121 24 1.00000000
973
+ Z1121 26 1.00000000
974
+ Z1121 30 -1.00000000
975
+ Z1211 1 4.00000000
976
+ Z1211 25 1.00000000
977
+ Z1211 29 -1.00000000
978
+ Z1211 30 -2.00000000
979
+ Z1221 1 3.40000000
980
+ Z1221 25 1.00000000
981
+ Z1221 28 1.00000000
982
+ Z1221 30 -2.00000000
983
+ Z2111 1 2.00000000
984
+ Z2111 34 1.00000000
985
+ Z2111 37 -1.00000000
986
+ Z2111 40 -1.00000000
987
+ Z2121 1 1.70000000
988
+ Z2121 34 1.00000000
989
+ Z2121 36 1.00000000
990
+ Z2121 40 -1.00000000
991
+ Z2211 1 4.00000000
992
+ Z2211 35 1.00000000
993
+ Z2211 39 -1.00000000
994
+ Z2211 40 -2.00000000
995
+ Z2221 1 3.40000000
996
+ Z2221 35 1.00000000
997
+ Z2221 38 1.00000000
998
+ Z2221 40 -2.00000000
999
+ Z3111 1 2.00000000
1000
+ Z3111 44 1.00000000
1001
+ Z3111 47 -1.00000000
1002
+ Z3111 50 -1.00000000
1003
+ Z3121 1 1.70000000
1004
+ Z3121 44 1.00000000
1005
+ Z3121 46 1.00000000
1006
+ Z3121 50 -1.00000000
1007
+ Z3211 1 4.00000000
1008
+ Z3211 45 1.00000000
1009
+ Z3211 49 -1.00000000
1010
+ Z3211 50 -2.00000000
1011
+ Z3221 1 3.40000000
1012
+ Z3221 45 1.00000000
1013
+ Z3221 48 1.00000000
1014
+ Z3221 50 -2.00000000
1015
+ Z4111 1 2.00000000
1016
+ Z4111 54 1.00000000
1017
+ Z4111 57 -1.00000000
1018
+ Z4111 60 -1.00000000
1019
+ Z4121 1 1.70000000
1020
+ Z4121 54 1.00000000
1021
+ Z4121 56 1.00000000
1022
+ Z4121 60 -1.00000000
1023
+ Z4211 1 4.00000000
1024
+ Z4211 55 1.00000000
1025
+ Z4211 59 -1.00000000
1026
+ Z4211 60 -2.00000000
1027
+ Z4221 1 3.40000000
1028
+ Z4221 55 1.00000000
1029
+ Z4221 58 1.00000000
1030
+ Z4221 60 -2.00000000
1031
+ Z5111 1 2.00000000
1032
+ Z5111 64 1.00000000
1033
+ Z5111 67 -1.00000000
1034
+ Z5111 70 -1.00000000
1035
+ Z5121 1 1.70000000
1036
+ Z5121 64 1.00000000
1037
+ Z5121 66 1.00000000
1038
+ Z5121 70 -1.00000000
1039
+ Z5211 1 4.00000000
1040
+ Z5211 65 1.00000000
1041
+ Z5211 69 -1.00000000
1042
+ Z5211 70 -2.00000000
1043
+ Z5221 1 3.40000000
1044
+ Z5221 65 1.00000000
1045
+ Z5221 68 1.00000000
1046
+ Z5221 70 -2.00000000
1047
+ W11 1 1.50000000
1048
+ W11 30 1.00000000
1049
+ W11 31 1.00000000
1050
+ W11 32 1.00000000
1051
+ W21 1 1.60000000
1052
+ W21 40 1.00000000
1053
+ W21 41 1.00000000
1054
+ W21 42 1.00000000
1055
+ W31 1 1.40000000
1056
+ W31 50 1.00000000
1057
+ W31 51 1.00000000
1058
+ W31 52 1.00000000
1059
+ W41 1 1.20000000
1060
+ W41 60 1.00000000
1061
+ W41 61 1.00000000
1062
+ W41 62 1.00000000
1063
+ W51 1 2.30000000
1064
+ W51 70 1.00000000
1065
+ W51 71 1.00000000
1066
+ W51 72 1.00000000
1067
+ Q111 1 9.00000000
1068
+ Q111 14 -1.00000000
1069
+ Q111 109 1.00000000
1070
+ Q211 1 9.00000000
1071
+ Q211 16 -1.00000000
1072
+ Q211 111 1.00000000
1073
+ Q311 1 9.00000000
1074
+ Q311 18 -1.00000000
1075
+ Q311 113 1.00000000
1076
+ Q411 1 9.00000000
1077
+ Q411 20 -1.00000000
1078
+ Q411 115 1.00000000
1079
+ Q511 1 9.00000000
1080
+ Q511 22 -1.00000000
1081
+ Q511 117 1.00000000
1082
+ Q121 1 15.00000000
1083
+ Q121 15 -1.00000000
1084
+ Q121 110 1.00000000
1085
+ Q221 1 15.00000000
1086
+ Q221 17 -1.00000000
1087
+ Q221 112 1.00000000
1088
+ Q321 1 15.00000000
1089
+ Q321 19 -1.00000000
1090
+ Q321 114 1.00000000
1091
+ Q421 1 15.00000000
1092
+ Q421 21 -1.00000000
1093
+ Q421 116 1.00000000
1094
+ Q521 1 15.00000000
1095
+ Q521 23 -1.00000000
1096
+ Q521 118 1.00000000
1097
+ X1112 1 6.00000000
1098
+ X1112 97 1.00000000
1099
+ X1112 109 1.00000000
1100
+ X1112 119 -1.00000000
1101
+ X1212 1 8.00000000
1102
+ X1212 97 1.00000000
1103
+ X1212 111 1.00000000
1104
+ X1212 129 -1.00000000
1105
+ X1312 1 10.10000000
1106
+ X1312 97 1.00000000
1107
+ X1312 113 1.00000000
1108
+ X1312 139 -1.00000000
1109
+ X1412 1 13.00000000
1110
+ X1412 97 1.00000000
1111
+ X1412 115 1.00000000
1112
+ X1412 149 -1.00000000
1113
+ X1512 1 15.50000000
1114
+ X1512 97 1.00000000
1115
+ X1512 117 1.00000000
1116
+ X1512 159 -1.00000000
1117
+ X2112 1 12.90000000
1118
+ X2112 99 1.00000000
1119
+ X2112 109 1.00000000
1120
+ X2112 119 -1.00000000
1121
+ X2212 1 6.20000000
1122
+ X2212 99 1.00000000
1123
+ X2212 111 1.00000000
1124
+ X2212 129 -1.00000000
1125
+ X2312 1 5.00000000
1126
+ X2312 99 1.00000000
1127
+ X2312 113 1.00000000
1128
+ X2312 139 -1.00000000
1129
+ X2412 1 9.60000000
1130
+ X2412 99 1.00000000
1131
+ X2412 115 1.00000000
1132
+ X2412 149 -1.00000000
1133
+ X2512 1 4.90000000
1134
+ X2512 99 1.00000000
1135
+ X2512 117 1.00000000
1136
+ X2512 159 -1.00000000
1137
+ X3112 1 12.20000000
1138
+ X3112 101 1.00000000
1139
+ X3112 109 1.00000000
1140
+ X3112 119 -1.00000000
1141
+ X3212 1 2.30000000
1142
+ X3212 101 1.00000000
1143
+ X3212 111 1.00000000
1144
+ X3212 129 -1.00000000
1145
+ X3312 1 8.30000000
1146
+ X3312 101 1.00000000
1147
+ X3312 113 1.00000000
1148
+ X3312 139 -1.00000000
1149
+ X3412 1 4.20000000
1150
+ X3412 101 1.00000000
1151
+ X3412 115 1.00000000
1152
+ X3412 149 -1.00000000
1153
+ X3512 1 5.20000000
1154
+ X3512 101 1.00000000
1155
+ X3512 117 1.00000000
1156
+ X3512 159 -1.00000000
1157
+ Y1112 1 2.30000000
1158
+ Y1112 109 -1.00000000
1159
+ Y1112 174 1.00000000
1160
+ Y1212 1 6.70000000
1161
+ Y1212 109 -1.00000000
1162
+ Y1212 176 1.00000000
1163
+ Y1312 1 12.00000000
1164
+ Y1312 109 -1.00000000
1165
+ Y1312 178 1.00000000
1166
+ Y1412 1 4.50000000
1167
+ Y1412 109 -1.00000000
1168
+ Y1412 180 1.00000000
1169
+ Y1512 1 8.00000000
1170
+ Y1512 109 -1.00000000
1171
+ Y1512 182 1.00000000
1172
+ Y1612 1 12.50000000
1173
+ Y1612 109 -1.00000000
1174
+ Y1612 184 1.00000000
1175
+ Y1712 1 9.80000000
1176
+ Y1712 109 -1.00000000
1177
+ Y1712 186 1.00000000
1178
+ Y1812 1 12.00000000
1179
+ Y1812 109 -1.00000000
1180
+ Y1812 188 1.00000000
1181
+ Y1912 1 15.50000000
1182
+ Y1912 109 -1.00000000
1183
+ Y1912 190 1.00000000
1184
+ Y2112 1 7.30000000
1185
+ Y2112 111 -1.00000000
1186
+ Y2112 174 1.00000000
1187
+ Y2212 1 4.20000000
1188
+ Y2212 111 -1.00000000
1189
+ Y2212 176 1.00000000
1190
+ Y2312 1 5.70000000
1191
+ Y2312 111 -1.00000000
1192
+ Y2312 178 1.00000000
1193
+ Y2412 1 6.00000000
1194
+ Y2412 111 -1.00000000
1195
+ Y2412 180 1.00000000
1196
+ Y2512 1 1.50000000
1197
+ Y2512 111 -1.00000000
1198
+ Y2512 182 1.00000000
1199
+ Y2612 1 4.30000000
1200
+ Y2612 111 -1.00000000
1201
+ Y2612 184 1.00000000
1202
+ Y2712 1 8.90000000
1203
+ Y2712 111 -1.00000000
1204
+ Y2712 186 1.00000000
1205
+ Y2812 1 6.70000000
1206
+ Y2812 111 -1.00000000
1207
+ Y2812 188 1.00000000
1208
+ Y2912 1 7.60000000
1209
+ Y2912 111 -1.00000000
1210
+ Y2912 190 1.00000000
1211
+ Y3112 1 8.00000000
1212
+ Y3112 113 -1.00000000
1213
+ Y3112 174 1.00000000
1214
+ Y3212 1 7.30000000
1215
+ Y3212 113 -1.00000000
1216
+ Y3212 176 1.00000000
1217
+ Y3312 1 9.60000000
1218
+ Y3312 113 -1.00000000
1219
+ Y3312 178 1.00000000
1220
+ Y3412 1 3.50000000
1221
+ Y3412 113 -1.00000000
1222
+ Y3412 180 1.00000000
1223
+ Y3512 1 2.40000000
1224
+ Y3512 113 -1.00000000
1225
+ Y3512 182 1.00000000
1226
+ Y3612 1 7.00000000
1227
+ Y3612 113 -1.00000000
1228
+ Y3612 184 1.00000000
1229
+ Y3712 1 5.00000000
1230
+ Y3712 113 -1.00000000
1231
+ Y3712 186 1.00000000
1232
+ Y3812 1 4.10000000
1233
+ Y3812 113 -1.00000000
1234
+ Y3812 188 1.00000000
1235
+ Y3912 1 7.90000000
1236
+ Y3912 113 -1.00000000
1237
+ Y3912 190 1.00000000
1238
+ Y4112 1 9.50000000
1239
+ Y4112 115 -1.00000000
1240
+ Y4112 174 1.00000000
1241
+ Y4212 1 12.00000000
1242
+ Y4212 115 -1.00000000
1243
+ Y4212 176 1.00000000
1244
+ Y4312 1 15.00000000
1245
+ Y4312 115 -1.00000000
1246
+ Y4312 178 1.00000000
1247
+ Y4412 1 4.40000000
1248
+ Y4412 115 -1.00000000
1249
+ Y4412 180 1.00000000
1250
+ Y4512 1 8.20000000
1251
+ Y4512 115 -1.00000000
1252
+ Y4512 182 1.00000000
1253
+ Y4612 1 12.80000000
1254
+ Y4612 115 -1.00000000
1255
+ Y4612 184 1.00000000
1256
+ Y4712 1 2.70000000
1257
+ Y4712 115 -1.00000000
1258
+ Y4712 186 1.00000000
1259
+ Y4812 1 7.50000000
1260
+ Y4812 115 -1.00000000
1261
+ Y4812 188 1.00000000
1262
+ Y4912 1 12.50000000
1263
+ Y4912 115 -1.00000000
1264
+ Y4912 190 1.00000000
1265
+ Y5112 1 17.80000000
1266
+ Y5112 117 -1.00000000
1267
+ Y5112 174 1.00000000
1268
+ Y5212 1 12.80000000
1269
+ Y5212 117 -1.00000000
1270
+ Y5212 176 1.00000000
1271
+ Y5312 1 14.30000000
1272
+ Y5312 117 -1.00000000
1273
+ Y5312 178 1.00000000
1274
+ Y5412 1 7.90000000
1275
+ Y5412 117 -1.00000000
1276
+ Y5412 180 1.00000000
1277
+ Y5512 1 7.40000000
1278
+ Y5512 117 -1.00000000
1279
+ Y5512 182 1.00000000
1280
+ Y5612 1 10.00000000
1281
+ Y5612 117 -1.00000000
1282
+ Y5612 184 1.00000000
1283
+ Y5712 1 3.40000000
1284
+ Y5712 117 -1.00000000
1285
+ Y5712 186 1.00000000
1286
+ Y5812 1 2.50000000
1287
+ Y5812 117 -1.00000000
1288
+ Y5812 188 1.00000000
1289
+ Y5912 1 7.20000000
1290
+ Y5912 117 -1.00000000
1291
+ Y5912 190 1.00000000
1292
+ X1122 1 12.00000000
1293
+ X1122 98 1.00000000
1294
+ X1122 110 1.00000000
1295
+ X1122 120 -1.00000000
1296
+ X1222 1 16.00000000
1297
+ X1222 98 1.00000000
1298
+ X1222 112 1.00000000
1299
+ X1222 130 -1.00000000
1300
+ X1322 1 20.20000000
1301
+ X1322 98 1.00000000
1302
+ X1322 114 1.00000000
1303
+ X1322 140 -1.00000000
1304
+ X1422 1 26.00000000
1305
+ X1422 98 1.00000000
1306
+ X1422 116 1.00000000
1307
+ X1422 150 -1.00000000
1308
+ X1522 1 31.00000000
1309
+ X1522 98 1.00000000
1310
+ X1522 118 1.00000000
1311
+ X1522 160 -1.00000000
1312
+ X2122 1 25.80000000
1313
+ X2122 100 1.00000000
1314
+ X2122 110 1.00000000
1315
+ X2122 120 -1.00000000
1316
+ X2222 1 12.40000000
1317
+ X2222 100 1.00000000
1318
+ X2222 112 1.00000000
1319
+ X2222 130 -1.00000000
1320
+ X2322 1 10.00000000
1321
+ X2322 100 1.00000000
1322
+ X2322 114 1.00000000
1323
+ X2322 140 -1.00000000
1324
+ X2422 1 19.20000000
1325
+ X2422 100 1.00000000
1326
+ X2422 116 1.00000000
1327
+ X2422 150 -1.00000000
1328
+ X2522 1 9.80000000
1329
+ X2522 100 1.00000000
1330
+ X2522 118 1.00000000
1331
+ X2522 160 -1.00000000
1332
+ X3122 1 24.40000000
1333
+ X3122 102 1.00000000
1334
+ X3122 110 1.00000000
1335
+ X3122 120 -1.00000000
1336
+ X3222 1 24.60000000
1337
+ X3222 102 1.00000000
1338
+ X3222 112 1.00000000
1339
+ X3222 130 -1.00000000
1340
+ X3322 1 16.60000000
1341
+ X3322 102 1.00000000
1342
+ X3322 114 1.00000000
1343
+ X3322 140 -1.00000000
1344
+ X3422 1 8.40000000
1345
+ X3422 102 1.00000000
1346
+ X3422 116 1.00000000
1347
+ X3422 150 -1.00000000
1348
+ X3522 1 .40000000
1349
+ X3522 102 1.00000000
1350
+ X3522 118 1.00000000
1351
+ X3522 160 -1.00000000
1352
+ Y1122 1 4.60000000
1353
+ Y1122 110 -1.00000000
1354
+ Y1122 175 1.00000000
1355
+ Y1222 1 13.40000000
1356
+ Y1222 110 -1.00000000
1357
+ Y1222 177 1.00000000
1358
+ Y1322 1 24.00000000
1359
+ Y1322 110 -1.00000000
1360
+ Y1322 179 1.00000000
1361
+ Y1422 1 9.00000000
1362
+ Y1422 110 -1.00000000
1363
+ Y1422 181 1.00000000
1364
+ Y1522 1 16.00000000
1365
+ Y1522 110 -1.00000000
1366
+ Y1522 183 1.00000000
1367
+ Y1622 1 25.00000000
1368
+ Y1622 110 -1.00000000
1369
+ Y1622 185 1.00000000
1370
+ Y1722 1 19.60000000
1371
+ Y1722 110 -1.00000000
1372
+ Y1722 187 1.00000000
1373
+ Y1822 1 24.00000000
1374
+ Y1822 110 -1.00000000
1375
+ Y1822 189 1.00000000
1376
+ Y1922 1 31.00000000
1377
+ Y1922 110 -1.00000000
1378
+ Y1922 191 1.00000000
1379
+ Y2122 1 14.60000000
1380
+ Y2122 112 -1.00000000
1381
+ Y2122 175 1.00000000
1382
+ Y2222 1 8.40000000
1383
+ Y2222 112 -1.00000000
1384
+ Y2222 177 1.00000000
1385
+ Y2322 1 11.40000000
1386
+ Y2322 112 -1.00000000
1387
+ Y2322 179 1.00000000
1388
+ Y2422 1 12.00000000
1389
+ Y2422 112 -1.00000000
1390
+ Y2422 181 1.00000000
1391
+ Y2522 1 3.00000000
1392
+ Y2522 112 -1.00000000
1393
+ Y2522 183 1.00000000
1394
+ Y2622 1 8.60000000
1395
+ Y2622 112 -1.00000000
1396
+ Y2622 185 1.00000000
1397
+ Y2722 1 17.80000000
1398
+ Y2722 112 -1.00000000
1399
+ Y2722 187 1.00000000
1400
+ Y2822 1 13.40000000
1401
+ Y2822 112 -1.00000000
1402
+ Y2822 189 1.00000000
1403
+ Y2922 1 15.20000000
1404
+ Y2922 112 -1.00000000
1405
+ Y2922 191 1.00000000
1406
+ Y3122 1 16.00000000
1407
+ Y3122 114 -1.00000000
1408
+ Y3122 175 1.00000000
1409
+ Y3222 1 14.60000000
1410
+ Y3222 114 -1.00000000
1411
+ Y3222 177 1.00000000
1412
+ Y3322 1 19.20000000
1413
+ Y3322 114 -1.00000000
1414
+ Y3322 179 1.00000000
1415
+ Y3422 1 7.00000000
1416
+ Y3422 114 -1.00000000
1417
+ Y3422 181 1.00000000
1418
+ Y3522 1 4.80000000
1419
+ Y3522 114 -1.00000000
1420
+ Y3522 183 1.00000000
1421
+ Y3622 1 14.00000000
1422
+ Y3622 114 -1.00000000
1423
+ Y3622 185 1.00000000
1424
+ Y3722 1 10.00000000
1425
+ Y3722 114 -1.00000000
1426
+ Y3722 187 1.00000000
1427
+ Y3822 1 8.20000000
1428
+ Y3822 114 -1.00000000
1429
+ Y3822 189 1.00000000
1430
+ Y3922 1 15.80000000
1431
+ Y3922 114 -1.00000000
1432
+ Y3922 191 1.00000000
1433
+ Y4122 1 19.00000000
1434
+ Y4122 116 -1.00000000
1435
+ Y4122 175 1.00000000
1436
+ Y4222 1 24.00000000
1437
+ Y4222 116 -1.00000000
1438
+ Y4222 177 1.00000000
1439
+ Y4322 1 30.00000000
1440
+ Y4322 116 -1.00000000
1441
+ Y4322 179 1.00000000
1442
+ Y4422 1 8.80000000
1443
+ Y4422 116 -1.00000000
1444
+ Y4422 181 1.00000000
1445
+ Y4522 1 16.40000000
1446
+ Y4522 116 -1.00000000
1447
+ Y4522 183 1.00000000
1448
+ Y4622 1 25.60000000
1449
+ Y4622 116 -1.00000000
1450
+ Y4622 185 1.00000000
1451
+ Y4722 1 5.40000000
1452
+ Y4722 116 -1.00000000
1453
+ Y4722 187 1.00000000
1454
+ Y4822 1 15.00000000
1455
+ Y4822 116 -1.00000000
1456
+ Y4822 189 1.00000000
1457
+ Y4922 1 25.00000000
1458
+ Y4922 116 -1.00000000
1459
+ Y4922 191 1.00000000
1460
+ Y5122 1 35.60000000
1461
+ Y5122 118 -1.00000000
1462
+ Y5122 175 1.00000000
1463
+ Y5222 1 25.60000000
1464
+ Y5222 118 -1.00000000
1465
+ Y5222 177 1.00000000
1466
+ Y5322 1 28.60000000
1467
+ Y5322 118 -1.00000000
1468
+ Y5322 179 1.00000000
1469
+ Y5422 1 15.80000000
1470
+ Y5422 118 -1.00000000
1471
+ Y5422 181 1.00000000
1472
+ Y5522 1 14.80000000
1473
+ Y5522 118 -1.00000000
1474
+ Y5522 183 1.00000000
1475
+ Y5622 1 20.00000000
1476
+ Y5622 118 -1.00000000
1477
+ Y5622 185 1.00000000
1478
+ Y5722 1 6.80000000
1479
+ Y5722 118 -1.00000000
1480
+ Y5722 187 1.00000000
1481
+ Y5822 1 5.00000000
1482
+ Y5822 118 -1.00000000
1483
+ Y5822 189 1.00000000
1484
+ Y5922 1 14.40000000
1485
+ Y5922 118 -1.00000000
1486
+ Y5922 191 1.00000000
1487
+ S112 1 50.00000000
1488
+ S112 97 -1.00000000
1489
+ S112 103 1.00000000
1490
+ S212 1 60.00000000
1491
+ S212 99 -1.00000000
1492
+ S212 104 1.00000000
1493
+ S312 1 70.00000000
1494
+ S312 101 -1.00000000
1495
+ S312 105 1.00000000
1496
+ S122 1 105.00000
1497
+ S122 98 -1.00000000
1498
+ S122 106 1.00000000
1499
+ S222 1 95.00000000
1500
+ S222 100 -1.00000000
1501
+ S222 107 1.00000000
1502
+ S322 1 133.00000
1503
+ S322 102 -1.00000000
1504
+ S322 108 1.00000000
1505
+ Z1112 1 2.00000000
1506
+ Z1112 119 1.00000000
1507
+ Z1112 122 -1.00000000
1508
+ Z1112 125 -1.00000000
1509
+ Z1122 1 1.70000000
1510
+ Z1122 119 1.00000000
1511
+ Z1122 121 1.00000000
1512
+ Z1122 125 -1.00000000
1513
+ Z1212 1 4.00000000
1514
+ Z1212 120 1.00000000
1515
+ Z1212 124 -1.00000000
1516
+ Z1212 125 -2.00000000
1517
+ Z1222 1 3.40000000
1518
+ Z1222 120 1.00000000
1519
+ Z1222 123 1.00000000
1520
+ Z1222 125 -2.00000000
1521
+ Z2112 1 2.00000000
1522
+ Z2112 129 1.00000000
1523
+ Z2112 132 -1.00000000
1524
+ Z2112 135 -1.00000000
1525
+ Z2122 1 1.70000000
1526
+ Z2122 129 1.00000000
1527
+ Z2122 131 1.00000000
1528
+ Z2122 135 -1.00000000
1529
+ Z2212 1 4.00000000
1530
+ Z2212 130 1.00000000
1531
+ Z2212 134 -1.00000000
1532
+ Z2212 135 -2.00000000
1533
+ Z2222 1 3.40000000
1534
+ Z2222 130 1.00000000
1535
+ Z2222 133 1.00000000
1536
+ Z2222 135 -2.00000000
1537
+ Z3112 1 2.00000000
1538
+ Z3112 139 1.00000000
1539
+ Z3112 142 -1.00000000
1540
+ Z3112 145 -1.00000000
1541
+ Z3122 1 1.70000000
1542
+ Z3122 139 1.00000000
1543
+ Z3122 141 1.00000000
1544
+ Z3122 145 -1.00000000
1545
+ Z3212 1 4.00000000
1546
+ Z3212 140 1.00000000
1547
+ Z3212 144 -1.00000000
1548
+ Z3212 145 -2.00000000
1549
+ Z3222 1 3.40000000
1550
+ Z3222 140 1.00000000
1551
+ Z3222 143 1.00000000
1552
+ Z3222 145 -2.00000000
1553
+ Z4112 1 2.00000000
1554
+ Z4112 149 1.00000000
1555
+ Z4112 152 -1.00000000
1556
+ Z4112 155 -1.00000000
1557
+ Z4122 1 1.70000000
1558
+ Z4122 149 1.00000000
1559
+ Z4122 151 1.00000000
1560
+ Z4122 155 -1.00000000
1561
+ Z4212 1 4.00000000
1562
+ Z4212 150 1.00000000
1563
+ Z4212 154 -1.00000000
1564
+ Z4212 155 -2.00000000
1565
+ Z4222 1 3.40000000
1566
+ Z4222 150 1.00000000
1567
+ Z4222 153 1.00000000
1568
+ Z4222 155 -2.00000000
1569
+ Z5112 1 2.00000000
1570
+ Z5112 159 1.00000000
1571
+ Z5112 162 -1.00000000
1572
+ Z5112 165 -1.00000000
1573
+ Z5122 1 1.70000000
1574
+ Z5122 159 1.00000000
1575
+ Z5122 161 1.00000000
1576
+ Z5122 165 -1.00000000
1577
+ Z5212 1 4.00000000
1578
+ Z5212 160 1.00000000
1579
+ Z5212 164 -1.00000000
1580
+ Z5212 165 -2.00000000
1581
+ Z5222 1 3.40000000
1582
+ Z5222 160 1.00000000
1583
+ Z5222 163 1.00000000
1584
+ Z5222 165 -2.00000000
1585
+ W12 1 1.50000000
1586
+ W12 125 1.00000000
1587
+ W12 126 1.00000000
1588
+ W12 127 1.00000000
1589
+ W22 1 1.60000000
1590
+ W22 135 1.00000000
1591
+ W22 136 1.00000000
1592
+ W22 137 1.00000000
1593
+ W32 1 1.40000000
1594
+ W32 145 1.00000000
1595
+ W32 146 1.00000000
1596
+ W32 147 1.00000000
1597
+ W42 1 1.20000000
1598
+ W42 155 1.00000000
1599
+ W42 156 1.00000000
1600
+ W42 157 1.00000000
1601
+ W52 1 2.30000000
1602
+ W52 165 1.00000000
1603
+ W52 166 1.00000000
1604
+ W52 167 1.00000000
1605
+ Q112 1 9.00000000
1606
+ Q112 109 -1.00000000
1607
+ Q112 204 1.00000000
1608
+ Q212 1 9.00000000
1609
+ Q212 111 -1.00000000
1610
+ Q212 206 1.00000000
1611
+ Q312 1 9.00000000
1612
+ Q312 113 -1.00000000
1613
+ Q312 208 1.00000000
1614
+ Q412 1 9.00000000
1615
+ Q412 115 -1.00000000
1616
+ Q412 210 1.00000000
1617
+ Q512 1 9.00000000
1618
+ Q512 117 -1.00000000
1619
+ Q512 212 1.00000000
1620
+ Q122 1 15.00000000
1621
+ Q122 110 -1.00000000
1622
+ Q122 205 1.00000000
1623
+ Q222 1 15.00000000
1624
+ Q222 112 -1.00000000
1625
+ Q222 207 1.00000000
1626
+ Q322 1 15.00000000
1627
+ Q322 114 -1.00000000
1628
+ Q322 209 1.00000000
1629
+ Q422 1 15.00000000
1630
+ Q422 116 -1.00000000
1631
+ Q422 211 1.00000000
1632
+ Q522 1 15.00000000
1633
+ Q522 118 -1.00000000
1634
+ Q522 213 1.00000000
1635
+ X1113 1 6.00000000
1636
+ X1113 192 1.00000000
1637
+ X1113 204 1.00000000
1638
+ X1113 214 -1.00000000
1639
+ X1213 1 8.00000000
1640
+ X1213 192 1.00000000
1641
+ X1213 206 1.00000000
1642
+ X1213 224 -1.00000000
1643
+ X1313 1 10.10000000
1644
+ X1313 192 1.00000000
1645
+ X1313 208 1.00000000
1646
+ X1313 234 -1.00000000
1647
+ X1413 1 13.00000000
1648
+ X1413 192 1.00000000
1649
+ X1413 210 1.00000000
1650
+ X1413 244 -1.00000000
1651
+ X1513 1 15.50000000
1652
+ X1513 192 1.00000000
1653
+ X1513 212 1.00000000
1654
+ X1513 254 -1.00000000
1655
+ X2113 1 12.90000000
1656
+ X2113 194 1.00000000
1657
+ X2113 204 1.00000000
1658
+ X2113 214 -1.00000000
1659
+ X2213 1 6.20000000
1660
+ X2213 194 1.00000000
1661
+ X2213 206 1.00000000
1662
+ X2213 224 -1.00000000
1663
+ X2313 1 5.00000000
1664
+ X2313 194 1.00000000
1665
+ X2313 208 1.00000000
1666
+ X2313 234 -1.00000000
1667
+ X2413 1 9.60000000
1668
+ X2413 194 1.00000000
1669
+ X2413 210 1.00000000
1670
+ X2413 244 -1.00000000
1671
+ X2513 1 4.90000000
1672
+ X2513 194 1.00000000
1673
+ X2513 212 1.00000000
1674
+ X2513 254 -1.00000000
1675
+ X3113 1 12.20000000
1676
+ X3113 196 1.00000000
1677
+ X3113 204 1.00000000
1678
+ X3113 214 -1.00000000
1679
+ X3213 1 2.30000000
1680
+ X3213 196 1.00000000
1681
+ X3213 206 1.00000000
1682
+ X3213 224 -1.00000000
1683
+ X3313 1 8.30000000
1684
+ X3313 196 1.00000000
1685
+ X3313 208 1.00000000
1686
+ X3313 234 -1.00000000
1687
+ X3413 1 4.20000000
1688
+ X3413 196 1.00000000
1689
+ X3413 210 1.00000000
1690
+ X3413 244 -1.00000000
1691
+ X3513 1 5.20000000
1692
+ X3513 196 1.00000000
1693
+ X3513 212 1.00000000
1694
+ X3513 254 -1.00000000
1695
+ Y1113 1 2.30000000
1696
+ Y1113 204 -1.00000000
1697
+ Y1113 269 1.00000000
1698
+ Y1213 1 6.70000000
1699
+ Y1213 204 -1.00000000
1700
+ Y1213 271 1.00000000
1701
+ Y1313 1 12.00000000
1702
+ Y1313 204 -1.00000000
1703
+ Y1313 273 1.00000000
1704
+ Y1413 1 4.50000000
1705
+ Y1413 204 -1.00000000
1706
+ Y1413 275 1.00000000
1707
+ Y1513 1 8.00000000
1708
+ Y1513 204 -1.00000000
1709
+ Y1513 277 1.00000000
1710
+ Y1613 1 12.50000000
1711
+ Y1613 204 -1.00000000
1712
+ Y1613 279 1.00000000
1713
+ Y1713 1 9.80000000
1714
+ Y1713 204 -1.00000000
1715
+ Y1713 281 1.00000000
1716
+ Y1813 1 12.00000000
1717
+ Y1813 204 -1.00000000
1718
+ Y1813 283 1.00000000
1719
+ Y1913 1 15.50000000
1720
+ Y1913 204 -1.00000000
1721
+ Y1913 285 1.00000000
1722
+ Y2113 1 7.30000000
1723
+ Y2113 206 -1.00000000
1724
+ Y2113 269 1.00000000
1725
+ Y2213 1 4.20000000
1726
+ Y2213 206 -1.00000000
1727
+ Y2213 271 1.00000000
1728
+ Y2313 1 5.70000000
1729
+ Y2313 206 -1.00000000
1730
+ Y2313 273 1.00000000
1731
+ Y2413 1 6.00000000
1732
+ Y2413 206 -1.00000000
1733
+ Y2413 275 1.00000000
1734
+ Y2513 1 1.50000000
1735
+ Y2513 206 -1.00000000
1736
+ Y2513 277 1.00000000
1737
+ Y2613 1 4.30000000
1738
+ Y2613 206 -1.00000000
1739
+ Y2613 279 1.00000000
1740
+ Y2713 1 8.90000000
1741
+ Y2713 206 -1.00000000
1742
+ Y2713 281 1.00000000
1743
+ Y2813 1 6.70000000
1744
+ Y2813 206 -1.00000000
1745
+ Y2813 283 1.00000000
1746
+ Y2913 1 7.60000000
1747
+ Y2913 206 -1.00000000
1748
+ Y2913 285 1.00000000
1749
+ Y3113 1 8.00000000
1750
+ Y3113 208 -1.00000000
1751
+ Y3113 269 1.00000000
1752
+ Y3213 1 7.30000000
1753
+ Y3213 208 -1.00000000
1754
+ Y3213 271 1.00000000
1755
+ Y3313 1 9.60000000
1756
+ Y3313 208 -1.00000000
1757
+ Y3313 273 1.00000000
1758
+ Y3413 1 3.50000000
1759
+ Y3413 208 -1.00000000
1760
+ Y3413 275 1.00000000
1761
+ Y3513 1 2.40000000
1762
+ Y3513 208 -1.00000000
1763
+ Y3513 277 1.00000000
1764
+ Y3613 1 7.00000000
1765
+ Y3613 208 -1.00000000
1766
+ Y3613 279 1.00000000
1767
+ Y3713 1 5.00000000
1768
+ Y3713 208 -1.00000000
1769
+ Y3713 281 1.00000000
1770
+ Y3813 1 4.10000000
1771
+ Y3813 208 -1.00000000
1772
+ Y3813 283 1.00000000
1773
+ Y3913 1 7.90000000
1774
+ Y3913 208 -1.00000000
1775
+ Y3913 285 1.00000000
1776
+ Y4113 1 9.50000000
1777
+ Y4113 210 -1.00000000
1778
+ Y4113 269 1.00000000
1779
+ Y4213 1 12.00000000
1780
+ Y4213 210 -1.00000000
1781
+ Y4213 271 1.00000000
1782
+ Y4313 1 15.00000000
1783
+ Y4313 210 -1.00000000
1784
+ Y4313 273 1.00000000
1785
+ Y4413 1 4.40000000
1786
+ Y4413 210 -1.00000000
1787
+ Y4413 275 1.00000000
1788
+ Y4513 1 8.20000000
1789
+ Y4513 210 -1.00000000
1790
+ Y4513 277 1.00000000
1791
+ Y4613 1 12.80000000
1792
+ Y4613 210 -1.00000000
1793
+ Y4613 279 1.00000000
1794
+ Y4713 1 2.70000000
1795
+ Y4713 210 -1.00000000
1796
+ Y4713 281 1.00000000
1797
+ Y4813 1 7.50000000
1798
+ Y4813 210 -1.00000000
1799
+ Y4813 283 1.00000000
1800
+ Y4913 1 12.50000000
1801
+ Y4913 210 -1.00000000
1802
+ Y4913 285 1.00000000
1803
+ Y5113 1 17.80000000
1804
+ Y5113 212 -1.00000000
1805
+ Y5113 269 1.00000000
1806
+ Y5213 1 12.80000000
1807
+ Y5213 212 -1.00000000
1808
+ Y5213 271 1.00000000
1809
+ Y5313 1 14.30000000
1810
+ Y5313 212 -1.00000000
1811
+ Y5313 273 1.00000000
1812
+ Y5413 1 7.90000000
1813
+ Y5413 212 -1.00000000
1814
+ Y5413 275 1.00000000
1815
+ Y5513 1 7.40000000
1816
+ Y5513 212 -1.00000000
1817
+ Y5513 277 1.00000000
1818
+ Y5613 1 10.00000000
1819
+ Y5613 212 -1.00000000
1820
+ Y5613 279 1.00000000
1821
+ Y5713 1 3.40000000
1822
+ Y5713 212 -1.00000000
1823
+ Y5713 281 1.00000000
1824
+ Y5813 1 2.50000000
1825
+ Y5813 212 -1.00000000
1826
+ Y5813 283 1.00000000
1827
+ Y5913 1 7.20000000
1828
+ Y5913 212 -1.00000000
1829
+ Y5913 285 1.00000000
1830
+ X1123 1 12.00000000
1831
+ X1123 193 1.00000000
1832
+ X1123 205 1.00000000
1833
+ X1123 215 -1.00000000
1834
+ X1223 1 16.00000000
1835
+ X1223 193 1.00000000
1836
+ X1223 207 1.00000000
1837
+ X1223 225 -1.00000000
1838
+ X1323 1 20.20000000
1839
+ X1323 193 1.00000000
1840
+ X1323 209 1.00000000
1841
+ X1323 235 -1.00000000
1842
+ X1423 1 26.00000000
1843
+ X1423 193 1.00000000
1844
+ X1423 211 1.00000000
1845
+ X1423 245 -1.00000000
1846
+ X1523 1 31.00000000
1847
+ X1523 193 1.00000000
1848
+ X1523 213 1.00000000
1849
+ X1523 255 -1.00000000
1850
+ X2123 1 25.80000000
1851
+ X2123 195 1.00000000
1852
+ X2123 205 1.00000000
1853
+ X2123 215 -1.00000000
1854
+ X2223 1 12.40000000
1855
+ X2223 195 1.00000000
1856
+ X2223 207 1.00000000
1857
+ X2223 225 -1.00000000
1858
+ X2323 1 10.00000000
1859
+ X2323 195 1.00000000
1860
+ X2323 209 1.00000000
1861
+ X2323 235 -1.00000000
1862
+ X2423 1 19.20000000
1863
+ X2423 195 1.00000000
1864
+ X2423 211 1.00000000
1865
+ X2423 245 -1.00000000
1866
+ X2523 1 9.80000000
1867
+ X2523 195 1.00000000
1868
+ X2523 213 1.00000000
1869
+ X2523 255 -1.00000000
1870
+ X3123 1 24.40000000
1871
+ X3123 197 1.00000000
1872
+ X3123 205 1.00000000
1873
+ X3123 215 -1.00000000
1874
+ X3223 1 24.60000000
1875
+ X3223 197 1.00000000
1876
+ X3223 207 1.00000000
1877
+ X3223 225 -1.00000000
1878
+ X3323 1 16.60000000
1879
+ X3323 197 1.00000000
1880
+ X3323 209 1.00000000
1881
+ X3323 235 -1.00000000
1882
+ X3423 1 8.40000000
1883
+ X3423 197 1.00000000
1884
+ X3423 211 1.00000000
1885
+ X3423 245 -1.00000000
1886
+ X3523 1 .40000000
1887
+ X3523 197 1.00000000
1888
+ X3523 213 1.00000000
1889
+ X3523 255 -1.00000000
1890
+ Y1123 1 4.60000000
1891
+ Y1123 205 -1.00000000
1892
+ Y1123 270 1.00000000
1893
+ Y1223 1 13.40000000
1894
+ Y1223 205 -1.00000000
1895
+ Y1223 272 1.00000000
1896
+ Y1323 1 24.00000000
1897
+ Y1323 205 -1.00000000
1898
+ Y1323 274 1.00000000
1899
+ Y1423 1 9.00000000
1900
+ Y1423 205 -1.00000000
1901
+ Y1423 276 1.00000000
1902
+ Y1523 1 16.00000000
1903
+ Y1523 205 -1.00000000
1904
+ Y1523 278 1.00000000
1905
+ Y1623 1 25.00000000
1906
+ Y1623 205 -1.00000000
1907
+ Y1623 280 1.00000000
1908
+ Y1723 1 19.60000000
1909
+ Y1723 205 -1.00000000
1910
+ Y1723 282 1.00000000
1911
+ Y1823 1 24.00000000
1912
+ Y1823 205 -1.00000000
1913
+ Y1823 284 1.00000000
1914
+ Y1923 1 31.00000000
1915
+ Y1923 205 -1.00000000
1916
+ Y1923 286 1.00000000
1917
+ Y2123 1 14.60000000
1918
+ Y2123 207 -1.00000000
1919
+ Y2123 270 1.00000000
1920
+ Y2223 1 8.40000000
1921
+ Y2223 207 -1.00000000
1922
+ Y2223 272 1.00000000
1923
+ Y2323 1 11.40000000
1924
+ Y2323 207 -1.00000000
1925
+ Y2323 274 1.00000000
1926
+ Y2423 1 12.00000000
1927
+ Y2423 207 -1.00000000
1928
+ Y2423 276 1.00000000
1929
+ Y2523 1 3.00000000
1930
+ Y2523 207 -1.00000000
1931
+ Y2523 278 1.00000000
1932
+ Y2623 1 8.60000000
1933
+ Y2623 207 -1.00000000
1934
+ Y2623 280 1.00000000
1935
+ Y2723 1 17.80000000
1936
+ Y2723 207 -1.00000000
1937
+ Y2723 282 1.00000000
1938
+ Y2823 1 13.40000000
1939
+ Y2823 207 -1.00000000
1940
+ Y2823 284 1.00000000
1941
+ Y2923 1 15.20000000
1942
+ Y2923 207 -1.00000000
1943
+ Y2923 286 1.00000000
1944
+ Y3123 1 16.00000000
1945
+ Y3123 209 -1.00000000
1946
+ Y3123 270 1.00000000
1947
+ Y3223 1 14.60000000
1948
+ Y3223 209 -1.00000000
1949
+ Y3223 272 1.00000000
1950
+ Y3323 1 19.20000000
1951
+ Y3323 209 -1.00000000
1952
+ Y3323 274 1.00000000
1953
+ Y3423 1 7.00000000
1954
+ Y3423 209 -1.00000000
1955
+ Y3423 276 1.00000000
1956
+ Y3523 1 4.80000000
1957
+ Y3523 209 -1.00000000
1958
+ Y3523 278 1.00000000
1959
+ Y3623 1 14.00000000
1960
+ Y3623 209 -1.00000000
1961
+ Y3623 280 1.00000000
1962
+ Y3723 1 10.00000000
1963
+ Y3723 209 -1.00000000
1964
+ Y3723 282 1.00000000
1965
+ Y3823 1 8.20000000
1966
+ Y3823 209 -1.00000000
1967
+ Y3823 284 1.00000000
1968
+ Y3923 1 15.80000000
1969
+ Y3923 209 -1.00000000
1970
+ Y3923 286 1.00000000
1971
+ Y4123 1 19.00000000
1972
+ Y4123 211 -1.00000000
1973
+ Y4123 270 1.00000000
1974
+ Y4223 1 24.00000000
1975
+ Y4223 211 -1.00000000
1976
+ Y4223 272 1.00000000
1977
+ Y4323 1 30.00000000
1978
+ Y4323 211 -1.00000000
1979
+ Y4323 274 1.00000000
1980
+ Y4423 1 8.80000000
1981
+ Y4423 211 -1.00000000
1982
+ Y4423 276 1.00000000
1983
+ Y4523 1 16.40000000
1984
+ Y4523 211 -1.00000000
1985
+ Y4523 278 1.00000000
1986
+ Y4623 1 25.60000000
1987
+ Y4623 211 -1.00000000
1988
+ Y4623 280 1.00000000
1989
+ Y4723 1 5.40000000
1990
+ Y4723 211 -1.00000000
1991
+ Y4723 282 1.00000000
1992
+ Y4823 1 15.00000000
1993
+ Y4823 211 -1.00000000
1994
+ Y4823 284 1.00000000
1995
+ Y4923 1 25.00000000
1996
+ Y4923 211 -1.00000000
1997
+ Y4923 286 1.00000000
1998
+ Y5123 1 35.60000000
1999
+ Y5123 213 -1.00000000
2000
+ Y5123 270 1.00000000
2001
+ Y5223 1 25.60000000
2002
+ Y5223 213 -1.00000000
2003
+ Y5223 272 1.00000000
2004
+ Y5323 1 28.60000000
2005
+ Y5323 213 -1.00000000
2006
+ Y5323 274 1.00000000
2007
+ Y5423 1 15.80000000
2008
+ Y5423 213 -1.00000000
2009
+ Y5423 276 1.00000000
2010
+ Y5523 1 14.80000000
2011
+ Y5523 213 -1.00000000
2012
+ Y5523 278 1.00000000
2013
+ Y5623 1 20.00000000
2014
+ Y5623 213 -1.00000000
2015
+ Y5623 280 1.00000000
2016
+ Y5723 1 6.80000000
2017
+ Y5723 213 -1.00000000
2018
+ Y5723 282 1.00000000
2019
+ Y5823 1 5.00000000
2020
+ Y5823 213 -1.00000000
2021
+ Y5823 284 1.00000000
2022
+ Y5923 1 14.40000000
2023
+ Y5923 213 -1.00000000
2024
+ Y5923 286 1.00000000
2025
+ S113 1 50.00000000
2026
+ S113 192 -1.00000000
2027
+ S113 198 1.00000000
2028
+ S213 1 60.00000000
2029
+ S213 194 -1.00000000
2030
+ S213 199 1.00000000
2031
+ S313 1 70.00000000
2032
+ S313 196 -1.00000000
2033
+ S313 200 1.00000000
2034
+ S123 1 105.00000
2035
+ S123 193 -1.00000000
2036
+ S123 201 1.00000000
2037
+ S223 1 95.00000000
2038
+ S223 195 -1.00000000
2039
+ S223 202 1.00000000
2040
+ S323 1 133.00000
2041
+ S323 197 -1.00000000
2042
+ S323 203 1.00000000
2043
+ Z1113 1 2.00000000
2044
+ Z1113 214 1.00000000
2045
+ Z1113 217 -1.00000000
2046
+ Z1113 220 -1.00000000
2047
+ Z1123 1 1.70000000
2048
+ Z1123 214 1.00000000
2049
+ Z1123 216 1.00000000
2050
+ Z1123 220 -1.00000000
2051
+ Z1213 1 4.00000000
2052
+ Z1213 215 1.00000000
2053
+ Z1213 219 -1.00000000
2054
+ Z1213 220 -2.00000000
2055
+ Z1223 1 3.40000000
2056
+ Z1223 215 1.00000000
2057
+ Z1223 218 1.00000000
2058
+ Z1223 220 -2.00000000
2059
+ Z2113 1 2.00000000
2060
+ Z2113 224 1.00000000
2061
+ Z2113 227 -1.00000000
2062
+ Z2113 230 -1.00000000
2063
+ Z2123 1 1.70000000
2064
+ Z2123 224 1.00000000
2065
+ Z2123 226 1.00000000
2066
+ Z2123 230 -1.00000000
2067
+ Z2213 1 4.00000000
2068
+ Z2213 225 1.00000000
2069
+ Z2213 229 -1.00000000
2070
+ Z2213 230 -2.00000000
2071
+ Z2223 1 3.40000000
2072
+ Z2223 225 1.00000000
2073
+ Z2223 228 1.00000000
2074
+ Z2223 230 -2.00000000
2075
+ Z3113 1 2.00000000
2076
+ Z3113 234 1.00000000
2077
+ Z3113 237 -1.00000000
2078
+ Z3113 240 -1.00000000
2079
+ Z3123 1 1.70000000
2080
+ Z3123 234 1.00000000
2081
+ Z3123 236 1.00000000
2082
+ Z3123 240 -1.00000000
2083
+ Z3213 1 4.00000000
2084
+ Z3213 235 1.00000000
2085
+ Z3213 239 -1.00000000
2086
+ Z3213 240 -2.00000000
2087
+ Z3223 1 3.40000000
2088
+ Z3223 235 1.00000000
2089
+ Z3223 238 1.00000000
2090
+ Z3223 240 -2.00000000
2091
+ Z4113 1 2.00000000
2092
+ Z4113 244 1.00000000
2093
+ Z4113 247 -1.00000000
2094
+ Z4113 250 -1.00000000
2095
+ Z4123 1 1.70000000
2096
+ Z4123 244 1.00000000
2097
+ Z4123 246 1.00000000
2098
+ Z4123 250 -1.00000000
2099
+ Z4213 1 4.00000000
2100
+ Z4213 245 1.00000000
2101
+ Z4213 249 -1.00000000
2102
+ Z4213 250 -2.00000000
2103
+ Z4223 1 3.40000000
2104
+ Z4223 245 1.00000000
2105
+ Z4223 248 1.00000000
2106
+ Z4223 250 -2.00000000
2107
+ Z5113 1 2.00000000
2108
+ Z5113 254 1.00000000
2109
+ Z5113 257 -1.00000000
2110
+ Z5113 260 -1.00000000
2111
+ Z5123 1 1.70000000
2112
+ Z5123 254 1.00000000
2113
+ Z5123 256 1.00000000
2114
+ Z5123 260 -1.00000000
2115
+ Z5213 1 4.00000000
2116
+ Z5213 255 1.00000000
2117
+ Z5213 259 -1.00000000
2118
+ Z5213 260 -2.00000000
2119
+ Z5223 1 3.40000000
2120
+ Z5223 255 1.00000000
2121
+ Z5223 258 1.00000000
2122
+ Z5223 260 -2.00000000
2123
+ W13 1 1.50000000
2124
+ W13 220 1.00000000
2125
+ W13 221 1.00000000
2126
+ W13 222 1.00000000
2127
+ W23 1 1.60000000
2128
+ W23 230 1.00000000
2129
+ W23 231 1.00000000
2130
+ W23 232 1.00000000
2131
+ W33 1 1.40000000
2132
+ W33 240 1.00000000
2133
+ W33 241 1.00000000
2134
+ W33 242 1.00000000
2135
+ W43 1 1.20000000
2136
+ W43 250 1.00000000
2137
+ W43 251 1.00000000
2138
+ W43 252 1.00000000
2139
+ W53 1 2.30000000
2140
+ W53 260 1.00000000
2141
+ W53 261 1.00000000
2142
+ W53 262 1.00000000
2143
+ RHS
2144
+ RHS 8 230.000000
2145
+ RHS 9 265.000000
2146
+ RHS 10 207.000000
2147
+ RHS 11 140.000000
2148
+ RHS 12 110.000000
2149
+ RHS 13 135.000000
2150
+ RHS 79 28.000000
2151
+ RHS 80 16.000000
2152
+ RHS 81 42.000000
2153
+ RHS 82 25.000000
2154
+ RHS 83 63.000000
2155
+ RHS 84 36.000000
2156
+ RHS 85 24.000000
2157
+ RHS 86 15.000000
2158
+ RHS 87 36.000000
2159
+ RHS 88 10.000000
2160
+ RHS 89 71.000000
2161
+ RHS 90 26.000000
2162
+ RHS 91 34.000000
2163
+ RHS 92 16.000000
2164
+ RHS 93 27.000000
2165
+ RHS 94 9.000000
2166
+ RHS 95 66.000000
2167
+ RHS 96 28.000000
2168
+ RHS 103 230.000000
2169
+ RHS 104 265.000000
2170
+ RHS 105 207.000000
2171
+ RHS 106 140.000000
2172
+ RHS 107 110.000000
2173
+ RHS 108 135.000000
2174
+ RHS 174 33.000000
2175
+ RHS 175 21.000000
2176
+ RHS 176 47.000000
2177
+ RHS 177 30.000000
2178
+ RHS 178 68.000000
2179
+ RHS 179 41.000000
2180
+ RHS 180 29.000000
2181
+ RHS 181 20.000000
2182
+ RHS 182 31.000000
2183
+ RHS 183 15.000000
2184
+ RHS 184 76.000000
2185
+ RHS 185 31.000000
2186
+ RHS 186 39.000000
2187
+ RHS 187 21.000000
2188
+ RHS 188 32.000000
2189
+ RHS 189 14.000000
2190
+ RHS 190 71.000000
2191
+ RHS 191 33.000000
2192
+ RHS 198 230.000000
2193
+ RHS 199 265.000000
2194
+ RHS 200 207.000000
2195
+ RHS 201 140.000000
2196
+ RHS 202 110.000000
2197
+ RHS 203 135.000000
2198
+ RHS 269 38.000000
2199
+ RHS 270 26.000000
2200
+ RHS 271 52.000000
2201
+ RHS 272 35.000000
2202
+ RHS 273 73.000000
2203
+ RHS 274 46.000000
2204
+ RHS 275 34.000000
2205
+ RHS 276 25.000000
2206
+ RHS 277 36.000000
2207
+ RHS 278 20.000000
2208
+ RHS 279 81.000000
2209
+ RHS 280 36.000000
2210
+ RHS 281 44.000000
2211
+ RHS 282 26.000000
2212
+ RHS 283 37.000000
2213
+ RHS 284 19.000000
2214
+ RHS 285 76.000000
2215
+ RHS 286 38.000000
2216
+ RHS 287 1.000000
2217
+ RHS 288 1.000000
2218
+ RHS 289 1.000000
2219
+ RHS 290 1.000000
2220
+ RHS 291 1.000000
2221
+ BOUNDS
2222
+ UP LINDOBND D111 1.00
2223
+ UP LINDOBND D121 1.00
2224
+ UP LINDOBND D211 1.00
2225
+ UP LINDOBND D221 1.00
2226
+ UP LINDOBND D311 1.00
2227
+ UP LINDOBND D321 1.00
2228
+ UP LINDOBND D411 1.00
2229
+ UP LINDOBND D421 1.00
2230
+ UP LINDOBND D511 1.00
2231
+ UP LINDOBND D521 1.00
2232
+ UP LINDOBND G11 1.00
2233
+ UP LINDOBND G21 1.00
2234
+ UP LINDOBND G31 1.00
2235
+ UP LINDOBND G41 1.00
2236
+ UP LINDOBND G51 1.00
2237
+ UP LINDOBND H11 1.00
2238
+ UP LINDOBND H21 1.00
2239
+ UP LINDOBND H31 1.00
2240
+ UP LINDOBND H41 1.00
2241
+ UP LINDOBND H51 1.00
2242
+ UP LINDOBND B11 1.00
2243
+ UP LINDOBND B21 1.00
2244
+ UP LINDOBND B31 1.00
2245
+ UP LINDOBND B41 1.00
2246
+ UP LINDOBND B51 1.00
2247
+ UP LINDOBND D112 1.00
2248
+ UP LINDOBND D122 1.00
2249
+ UP LINDOBND D212 1.00
2250
+ UP LINDOBND D222 1.00
2251
+ UP LINDOBND D312 1.00
2252
+ UP LINDOBND D322 1.00
2253
+ UP LINDOBND D412 1.00
2254
+ UP LINDOBND D422 1.00
2255
+ UP LINDOBND D512 1.00
2256
+ UP LINDOBND D522 1.00
2257
+ UP LINDOBND G12 1.00
2258
+ UP LINDOBND G22 1.00
2259
+ UP LINDOBND G32 1.00
2260
+ UP LINDOBND G42 1.00
2261
+ UP LINDOBND G52 1.00
2262
+ UP LINDOBND H12 1.00
2263
+ UP LINDOBND H22 1.00
2264
+ UP LINDOBND H32 1.00
2265
+ UP LINDOBND H42 1.00
2266
+ UP LINDOBND H52 1.00
2267
+ UP LINDOBND B12 1.00
2268
+ UP LINDOBND B22 1.00
2269
+ UP LINDOBND B32 1.00
2270
+ UP LINDOBND B42 1.00
2271
+ UP LINDOBND B52 1.00
2272
+ UP LINDOBND D113 1.00
2273
+ UP LINDOBND D123 1.00
2274
+ UP LINDOBND D213 1.00
2275
+ UP LINDOBND D223 1.00
2276
+ UP LINDOBND D313 1.00
2277
+ UP LINDOBND D323 1.00
2278
+ UP LINDOBND D413 1.00
2279
+ UP LINDOBND D423 1.00
2280
+ UP LINDOBND D513 1.00
2281
+ UP LINDOBND D523 1.00
2282
+ UP LINDOBND G13 1.00
2283
+ UP LINDOBND G23 1.00
2284
+ UP LINDOBND G33 1.00
2285
+ UP LINDOBND G43 1.00
2286
+ UP LINDOBND G53 1.00
2287
+ UP LINDOBND H13 1.00
2288
+ UP LINDOBND H23 1.00
2289
+ UP LINDOBND H33 1.00
2290
+ UP LINDOBND H43 1.00
2291
+ UP LINDOBND H53 1.00
2292
+ UP LINDOBND B13 1.00
2293
+ UP LINDOBND B23 1.00
2294
+ UP LINDOBND B33 1.00
2295
+ UP LINDOBND B43 1.00
2296
+ UP LINDOBND B53 1.00
2297
+ ENDATA
2298
+ IMPORTANCES
2299
+ G13 2
2300
+ G23 2
2301
+ G33 2
2302
+ G43 2
2303
+ G53 2
2304
+ H13 2
2305
+ H23 2
2306
+ H33 2
2307
+ H43 2
2308
+ H53 2
2309
+
2310
+