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.
- checksums.yaml +4 -4
- data/Gemfile +1 -0
- data/README.md +104 -26
- data/ext/lpsolver/Makefile +269 -0
- data/ext/lpsolver/ext.c +353 -0
- data/ext/lpsolver/ext.o +0 -0
- data/ext/lpsolver/extconf.rb +79 -0
- data/ext/lpsolver/native.so +0 -0
- data/ext/lpsolver-highs/AUTHORS +7 -0
- data/ext/lpsolver-highs/BUILD.bazel +243 -0
- data/ext/lpsolver-highs/CITATION.cff +29 -0
- data/ext/lpsolver-highs/CMakeCache.txt +406 -0
- data/ext/lpsolver-highs/CMakeFiles/3.31.4/CMakeCCompiler.cmake +81 -0
- data/ext/lpsolver-highs/CMakeFiles/3.31.4/CMakeCXXCompiler.cmake +101 -0
- data/ext/lpsolver-highs/CMakeFiles/3.31.4/CMakeDetermineCompilerABI_C.bin +0 -0
- data/ext/lpsolver-highs/CMakeFiles/3.31.4/CMakeDetermineCompilerABI_CXX.bin +0 -0
- data/ext/lpsolver-highs/CMakeFiles/3.31.4/CMakeSystem.cmake +15 -0
- data/ext/lpsolver-highs/CMakeFiles/3.31.4/CompilerIdC/CMakeCCompilerId.c +904 -0
- data/ext/lpsolver-highs/CMakeFiles/3.31.4/CompilerIdC/a.out +0 -0
- data/ext/lpsolver-highs/CMakeFiles/3.31.4/CompilerIdCXX/CMakeCXXCompilerId.cpp +919 -0
- data/ext/lpsolver-highs/CMakeFiles/3.31.4/CompilerIdCXX/a.out +0 -0
- data/ext/lpsolver-highs/CMakeFiles/CMakeConfigureLog.yaml +576 -0
- data/ext/lpsolver-highs/CMakeFiles/cmake.check_cache +1 -0
- data/ext/lpsolver-highs/CMakeLists.txt +983 -0
- data/ext/lpsolver-highs/CODE_OF_CONDUCT.md +128 -0
- data/ext/lpsolver-highs/CONTRIBUTING.md +31 -0
- data/ext/lpsolver-highs/FEATURES.md +61 -0
- data/ext/lpsolver-highs/LICENSE.txt +21 -0
- data/ext/lpsolver-highs/MODULE.bazel +38 -0
- data/ext/lpsolver-highs/README.md +281 -0
- data/ext/lpsolver-highs/THIRD_PARTY_NOTICES.md +78 -0
- data/ext/lpsolver-highs/Version.txt +4 -0
- data/ext/lpsolver-highs/WORKSPACE +33 -0
- data/ext/lpsolver-highs/app/CMakeLists.txt +110 -0
- data/ext/lpsolver-highs/app/HighsRuntimeOptions.h +292 -0
- data/ext/lpsolver-highs/app/RunHighs.cpp +147 -0
- data/ext/lpsolver-highs/app/highs_webdemo_shell.html +73 -0
- data/ext/lpsolver-highs/build/bin/highs +0 -0
- data/ext/lpsolver-highs/build/include/highs/HConfig.h +22 -0
- data/ext/lpsolver-highs/build/include/highs/Highs.h +1812 -0
- data/ext/lpsolver-highs/build/include/highs/interfaces/highs_c_api.h +2651 -0
- data/ext/lpsolver-highs/build/include/highs/io/Filereader.h +45 -0
- data/ext/lpsolver-highs/build/include/highs/io/FilereaderLp.h +49 -0
- data/ext/lpsolver-highs/build/include/highs/io/FilereaderMps.h +27 -0
- data/ext/lpsolver-highs/build/include/highs/io/HMPSIO.h +78 -0
- data/ext/lpsolver-highs/build/include/highs/io/HMpsFF.h +245 -0
- data/ext/lpsolver-highs/build/include/highs/io/HighsIO.h +118 -0
- data/ext/lpsolver-highs/build/include/highs/io/LoadOptions.h +24 -0
- data/ext/lpsolver-highs/build/include/highs/io/filereaderlp/builder.hpp +25 -0
- data/ext/lpsolver-highs/build/include/highs/io/filereaderlp/def.hpp +19 -0
- data/ext/lpsolver-highs/build/include/highs/io/filereaderlp/model.hpp +68 -0
- data/ext/lpsolver-highs/build/include/highs/io/filereaderlp/reader.hpp +10 -0
- data/ext/lpsolver-highs/build/include/highs/ipm/IpxSolution.h +32 -0
- data/ext/lpsolver-highs/build/include/highs/ipm/IpxWrapper.h +106 -0
- data/ext/lpsolver-highs/build/include/highs/ipm/basiclu/basiclu.h +161 -0
- data/ext/lpsolver-highs/build/include/highs/ipm/basiclu/basiclu_factorize.h +247 -0
- data/ext/lpsolver-highs/build/include/highs/ipm/basiclu/basiclu_get_factors.h +108 -0
- data/ext/lpsolver-highs/build/include/highs/ipm/basiclu/basiclu_initialize.h +119 -0
- data/ext/lpsolver-highs/build/include/highs/ipm/basiclu/basiclu_obj_factorize.h +34 -0
- data/ext/lpsolver-highs/build/include/highs/ipm/basiclu/basiclu_obj_free.h +19 -0
- data/ext/lpsolver-highs/build/include/highs/ipm/basiclu/basiclu_obj_get_factors.h +34 -0
- data/ext/lpsolver-highs/build/include/highs/ipm/basiclu/basiclu_obj_initialize.h +46 -0
- data/ext/lpsolver-highs/build/include/highs/ipm/basiclu/basiclu_obj_solve_dense.h +29 -0
- data/ext/lpsolver-highs/build/include/highs/ipm/basiclu/basiclu_obj_solve_for_update.h +42 -0
- data/ext/lpsolver-highs/build/include/highs/ipm/basiclu/basiclu_obj_solve_sparse.h +32 -0
- data/ext/lpsolver-highs/build/include/highs/ipm/basiclu/basiclu_obj_update.h +31 -0
- data/ext/lpsolver-highs/build/include/highs/ipm/basiclu/basiclu_object.h +30 -0
- data/ext/lpsolver-highs/build/include/highs/ipm/basiclu/basiclu_solve_dense.h +75 -0
- data/ext/lpsolver-highs/build/include/highs/ipm/basiclu/basiclu_solve_for_update.h +169 -0
- data/ext/lpsolver-highs/build/include/highs/ipm/basiclu/basiclu_solve_sparse.h +112 -0
- data/ext/lpsolver-highs/build/include/highs/ipm/basiclu/basiclu_update.h +125 -0
- data/ext/lpsolver-highs/build/include/highs/ipm/basiclu/lu_def.h +39 -0
- data/ext/lpsolver-highs/build/include/highs/ipm/basiclu/lu_file.h +21 -0
- data/ext/lpsolver-highs/build/include/highs/ipm/basiclu/lu_internal.h +220 -0
- data/ext/lpsolver-highs/build/include/highs/ipm/basiclu/lu_list.h +173 -0
- data/ext/lpsolver-highs/build/include/highs/ipm/ipx/basiclu_kernel.h +20 -0
- data/ext/lpsolver-highs/build/include/highs/ipm/ipx/basiclu_wrapper.h +47 -0
- data/ext/lpsolver-highs/build/include/highs/ipm/ipx/basis.h +350 -0
- data/ext/lpsolver-highs/build/include/highs/ipm/ipx/conjugate_residuals.h +74 -0
- data/ext/lpsolver-highs/build/include/highs/ipm/ipx/control.h +167 -0
- data/ext/lpsolver-highs/build/include/highs/ipm/ipx/crossover.h +157 -0
- data/ext/lpsolver-highs/build/include/highs/ipm/ipx/diagonal_precond.h +45 -0
- data/ext/lpsolver-highs/build/include/highs/ipm/ipx/forrest_tomlin.h +102 -0
- data/ext/lpsolver-highs/build/include/highs/ipm/ipx/guess_basis.h +21 -0
- data/ext/lpsolver-highs/build/include/highs/ipm/ipx/indexed_vector.h +113 -0
- data/ext/lpsolver-highs/build/include/highs/ipm/ipx/info.h +27 -0
- data/ext/lpsolver-highs/build/include/highs/ipm/ipx/ipm.h +94 -0
- data/ext/lpsolver-highs/build/include/highs/ipm/ipx/ipx_c.h +47 -0
- data/ext/lpsolver-highs/build/include/highs/ipm/ipx/ipx_config.h +9 -0
- data/ext/lpsolver-highs/build/include/highs/ipm/ipx/ipx_info.h +111 -0
- data/ext/lpsolver-highs/build/include/highs/ipm/ipx/ipx_internal.h +89 -0
- data/ext/lpsolver-highs/build/include/highs/ipm/ipx/ipx_parameters.h +76 -0
- data/ext/lpsolver-highs/build/include/highs/ipm/ipx/ipx_status.h +57 -0
- data/ext/lpsolver-highs/build/include/highs/ipm/ipx/iterate.h +331 -0
- data/ext/lpsolver-highs/build/include/highs/ipm/ipx/kkt_solver.h +70 -0
- data/ext/lpsolver-highs/build/include/highs/ipm/ipx/kkt_solver_basis.h +66 -0
- data/ext/lpsolver-highs/build/include/highs/ipm/ipx/kkt_solver_diag.h +48 -0
- data/ext/lpsolver-highs/build/include/highs/ipm/ipx/linear_operator.h +26 -0
- data/ext/lpsolver-highs/build/include/highs/ipm/ipx/lp_solver.h +204 -0
- data/ext/lpsolver-highs/build/include/highs/ipm/ipx/lu_factorization.h +79 -0
- data/ext/lpsolver-highs/build/include/highs/ipm/ipx/lu_update.h +129 -0
- data/ext/lpsolver-highs/build/include/highs/ipm/ipx/maxvolume.h +54 -0
- data/ext/lpsolver-highs/build/include/highs/ipm/ipx/model.h +413 -0
- data/ext/lpsolver-highs/build/include/highs/ipm/ipx/multistream.h +52 -0
- data/ext/lpsolver-highs/build/include/highs/ipm/ipx/normal_matrix.h +44 -0
- data/ext/lpsolver-highs/build/include/highs/ipm/ipx/power_method.h +44 -0
- data/ext/lpsolver-highs/build/include/highs/ipm/ipx/sparse_matrix.h +195 -0
- data/ext/lpsolver-highs/build/include/highs/ipm/ipx/sparse_utils.h +58 -0
- data/ext/lpsolver-highs/build/include/highs/ipm/ipx/splitted_normal_matrix.h +63 -0
- data/ext/lpsolver-highs/build/include/highs/ipm/ipx/starting_basis.h +39 -0
- data/ext/lpsolver-highs/build/include/highs/ipm/ipx/symbolic_invert.h +29 -0
- data/ext/lpsolver-highs/build/include/highs/ipm/ipx/timer.h +25 -0
- data/ext/lpsolver-highs/build/include/highs/ipm/ipx/utils.h +37 -0
- data/ext/lpsolver-highs/build/include/highs/lp_data/HConst.h +430 -0
- data/ext/lpsolver-highs/build/include/highs/lp_data/HStruct.h +213 -0
- data/ext/lpsolver-highs/build/include/highs/lp_data/HighsAnalysis.h +23 -0
- data/ext/lpsolver-highs/build/include/highs/lp_data/HighsCallback.h +104 -0
- data/ext/lpsolver-highs/build/include/highs/lp_data/HighsCallbackStruct.h +70 -0
- data/ext/lpsolver-highs/build/include/highs/lp_data/HighsDebug.h +34 -0
- data/ext/lpsolver-highs/build/include/highs/lp_data/HighsIis.h +139 -0
- data/ext/lpsolver-highs/build/include/highs/lp_data/HighsInfo.h +421 -0
- data/ext/lpsolver-highs/build/include/highs/lp_data/HighsInfoDebug.h +27 -0
- data/ext/lpsolver-highs/build/include/highs/lp_data/HighsLp.h +97 -0
- data/ext/lpsolver-highs/build/include/highs/lp_data/HighsLpSolverObject.h +47 -0
- data/ext/lpsolver-highs/build/include/highs/lp_data/HighsLpUtils.h +330 -0
- data/ext/lpsolver-highs/build/include/highs/lp_data/HighsModelUtils.h +129 -0
- data/ext/lpsolver-highs/build/include/highs/lp_data/HighsOptions.h +1715 -0
- data/ext/lpsolver-highs/build/include/highs/lp_data/HighsRanging.h +43 -0
- data/ext/lpsolver-highs/build/include/highs/lp_data/HighsSolution.h +179 -0
- data/ext/lpsolver-highs/build/include/highs/lp_data/HighsSolutionDebug.h +87 -0
- data/ext/lpsolver-highs/build/include/highs/lp_data/HighsSolve.h +29 -0
- data/ext/lpsolver-highs/build/include/highs/lp_data/HighsStatus.h +29 -0
- data/ext/lpsolver-highs/build/include/highs/mip/HighsCliqueTable.h +329 -0
- data/ext/lpsolver-highs/build/include/highs/mip/HighsConflictPool.h +109 -0
- data/ext/lpsolver-highs/build/include/highs/mip/HighsCutGeneration.h +108 -0
- data/ext/lpsolver-highs/build/include/highs/mip/HighsCutPool.h +168 -0
- data/ext/lpsolver-highs/build/include/highs/mip/HighsDebugSol.h +133 -0
- data/ext/lpsolver-highs/build/include/highs/mip/HighsDomain.h +657 -0
- data/ext/lpsolver-highs/build/include/highs/mip/HighsDomainChange.h +48 -0
- data/ext/lpsolver-highs/build/include/highs/mip/HighsDynamicRowMatrix.h +104 -0
- data/ext/lpsolver-highs/build/include/highs/mip/HighsGFkSolve.h +439 -0
- data/ext/lpsolver-highs/build/include/highs/mip/HighsImplications.h +194 -0
- data/ext/lpsolver-highs/build/include/highs/mip/HighsLpAggregator.h +50 -0
- data/ext/lpsolver-highs/build/include/highs/mip/HighsLpRelaxation.h +361 -0
- data/ext/lpsolver-highs/build/include/highs/mip/HighsMipAnalysis.h +71 -0
- data/ext/lpsolver-highs/build/include/highs/mip/HighsMipSolver.h +159 -0
- data/ext/lpsolver-highs/build/include/highs/mip/HighsMipSolverData.h +313 -0
- data/ext/lpsolver-highs/build/include/highs/mip/HighsModkSeparator.h +60 -0
- data/ext/lpsolver-highs/build/include/highs/mip/HighsNodeQueue.h +312 -0
- data/ext/lpsolver-highs/build/include/highs/mip/HighsObjectiveFunction.h +71 -0
- data/ext/lpsolver-highs/build/include/highs/mip/HighsPathSeparator.h +39 -0
- data/ext/lpsolver-highs/build/include/highs/mip/HighsPrimalHeuristics.h +75 -0
- data/ext/lpsolver-highs/build/include/highs/mip/HighsPseudocost.h +366 -0
- data/ext/lpsolver-highs/build/include/highs/mip/HighsRedcostFixing.h +42 -0
- data/ext/lpsolver-highs/build/include/highs/mip/HighsSearch.h +241 -0
- data/ext/lpsolver-highs/build/include/highs/mip/HighsSeparation.h +41 -0
- data/ext/lpsolver-highs/build/include/highs/mip/HighsSeparator.h +60 -0
- data/ext/lpsolver-highs/build/include/highs/mip/HighsTableauSeparator.h +34 -0
- data/ext/lpsolver-highs/build/include/highs/mip/HighsTransformedLp.h +63 -0
- data/ext/lpsolver-highs/build/include/highs/mip/MipTimer.h +544 -0
- data/ext/lpsolver-highs/build/include/highs/mip/feasibilityjump.hh +800 -0
- data/ext/lpsolver-highs/build/include/highs/model/HighsHessian.h +54 -0
- data/ext/lpsolver-highs/build/include/highs/model/HighsHessianUtils.h +47 -0
- data/ext/lpsolver-highs/build/include/highs/model/HighsModel.h +42 -0
- data/ext/lpsolver-highs/build/include/highs/parallel/HighsBinarySemaphore.h +108 -0
- data/ext/lpsolver-highs/build/include/highs/parallel/HighsCacheAlign.h +82 -0
- data/ext/lpsolver-highs/build/include/highs/parallel/HighsCombinable.h +116 -0
- data/ext/lpsolver-highs/build/include/highs/parallel/HighsMutex.h +124 -0
- data/ext/lpsolver-highs/build/include/highs/parallel/HighsParallel.h +128 -0
- data/ext/lpsolver-highs/build/include/highs/parallel/HighsRaceTimer.h +38 -0
- data/ext/lpsolver-highs/build/include/highs/parallel/HighsSchedulerConstants.h +19 -0
- data/ext/lpsolver-highs/build/include/highs/parallel/HighsSpinMutex.h +48 -0
- data/ext/lpsolver-highs/build/include/highs/parallel/HighsSplitDeque.h +606 -0
- data/ext/lpsolver-highs/build/include/highs/parallel/HighsTask.h +170 -0
- data/ext/lpsolver-highs/build/include/highs/parallel/HighsTaskExecutor.h +217 -0
- data/ext/lpsolver-highs/build/include/highs/pdlp/CupdlpWrapper.h +108 -0
- data/ext/lpsolver-highs/build/include/highs/pdlp/HiPdlpTimer.h +155 -0
- data/ext/lpsolver-highs/build/include/highs/pdlp/HiPdlpWrapper.h +26 -0
- data/ext/lpsolver-highs/build/include/highs/pdlp/cupdlp/cupdlp_cs.h +40 -0
- data/ext/lpsolver-highs/build/include/highs/pdlp/cupdlp/cupdlp_defs.h +447 -0
- data/ext/lpsolver-highs/build/include/highs/pdlp/cupdlp/cupdlp_linalg.h +189 -0
- data/ext/lpsolver-highs/build/include/highs/pdlp/cupdlp/cupdlp_proj.h +19 -0
- data/ext/lpsolver-highs/build/include/highs/pdlp/cupdlp/cupdlp_restart.h +31 -0
- data/ext/lpsolver-highs/build/include/highs/pdlp/cupdlp/cupdlp_scaling.h +26 -0
- data/ext/lpsolver-highs/build/include/highs/pdlp/cupdlp/cupdlp_solver.h +105 -0
- data/ext/lpsolver-highs/build/include/highs/pdlp/cupdlp/cupdlp_step.h +37 -0
- data/ext/lpsolver-highs/build/include/highs/pdlp/cupdlp/cupdlp_utils.c +1850 -0
- data/ext/lpsolver-highs/build/include/highs/pdlp/hipdlp/defs.hpp +222 -0
- data/ext/lpsolver-highs/build/include/highs/pdlp/hipdlp/linalg.hpp +61 -0
- data/ext/lpsolver-highs/build/include/highs/pdlp/hipdlp/logger.hpp +80 -0
- data/ext/lpsolver-highs/build/include/highs/pdlp/hipdlp/pdhg.hpp +358 -0
- data/ext/lpsolver-highs/build/include/highs/pdlp/hipdlp/restart.hpp +96 -0
- data/ext/lpsolver-highs/build/include/highs/pdlp/hipdlp/scaling.hpp +74 -0
- data/ext/lpsolver-highs/build/include/highs/pdlp/hipdlp/solver_results.hpp +65 -0
- data/ext/lpsolver-highs/build/include/highs/pdqsort/pdqsort.h +532 -0
- data/ext/lpsolver-highs/build/include/highs/presolve/HPresolve.h +505 -0
- data/ext/lpsolver-highs/build/include/highs/presolve/HPresolveAnalysis.h +52 -0
- data/ext/lpsolver-highs/build/include/highs/presolve/HighsPostsolveStack.h +943 -0
- data/ext/lpsolver-highs/build/include/highs/presolve/HighsSymmetry.h +284 -0
- data/ext/lpsolver-highs/build/include/highs/presolve/ICrash.h +124 -0
- data/ext/lpsolver-highs/build/include/highs/presolve/ICrashUtil.h +62 -0
- data/ext/lpsolver-highs/build/include/highs/presolve/ICrashX.h +23 -0
- data/ext/lpsolver-highs/build/include/highs/presolve/PresolveComponent.h +90 -0
- data/ext/lpsolver-highs/build/include/highs/qpsolver/a_asm.hpp +77 -0
- data/ext/lpsolver-highs/build/include/highs/qpsolver/a_quass.hpp +22 -0
- data/ext/lpsolver-highs/build/include/highs/qpsolver/basis.hpp +159 -0
- data/ext/lpsolver-highs/build/include/highs/qpsolver/crashsolution.hpp +20 -0
- data/ext/lpsolver-highs/build/include/highs/qpsolver/dantzigpricing.hpp +80 -0
- data/ext/lpsolver-highs/build/include/highs/qpsolver/devexpricing.hpp +108 -0
- data/ext/lpsolver-highs/build/include/highs/qpsolver/eventhandler.hpp +30 -0
- data/ext/lpsolver-highs/build/include/highs/qpsolver/factor.hpp +408 -0
- data/ext/lpsolver-highs/build/include/highs/qpsolver/feasibility_bounded.hpp +114 -0
- data/ext/lpsolver-highs/build/include/highs/qpsolver/feasibility_highs.hpp +301 -0
- data/ext/lpsolver-highs/build/include/highs/qpsolver/gradient.hpp +46 -0
- data/ext/lpsolver-highs/build/include/highs/qpsolver/instance.hpp +70 -0
- data/ext/lpsolver-highs/build/include/highs/qpsolver/matrix.hpp +342 -0
- data/ext/lpsolver-highs/build/include/highs/qpsolver/perturbation.hpp +15 -0
- data/ext/lpsolver-highs/build/include/highs/qpsolver/pricing.hpp +22 -0
- data/ext/lpsolver-highs/build/include/highs/qpsolver/qpconst.hpp +34 -0
- data/ext/lpsolver-highs/build/include/highs/qpsolver/qpvector.hpp +242 -0
- data/ext/lpsolver-highs/build/include/highs/qpsolver/quass.hpp +27 -0
- data/ext/lpsolver-highs/build/include/highs/qpsolver/ratiotest.hpp +26 -0
- data/ext/lpsolver-highs/build/include/highs/qpsolver/runtime.hpp +45 -0
- data/ext/lpsolver-highs/build/include/highs/qpsolver/scaling.hpp +15 -0
- data/ext/lpsolver-highs/build/include/highs/qpsolver/settings.hpp +84 -0
- data/ext/lpsolver-highs/build/include/highs/qpsolver/snippets.hpp +36 -0
- data/ext/lpsolver-highs/build/include/highs/qpsolver/statistics.hpp +30 -0
- data/ext/lpsolver-highs/build/include/highs/qpsolver/steepestedgepricing.hpp +173 -0
- data/ext/lpsolver-highs/build/include/highs/simplex/HApp.h +550 -0
- data/ext/lpsolver-highs/build/include/highs/simplex/HEkk.h +419 -0
- data/ext/lpsolver-highs/build/include/highs/simplex/HEkkDual.h +513 -0
- data/ext/lpsolver-highs/build/include/highs/simplex/HEkkDualRHS.h +134 -0
- data/ext/lpsolver-highs/build/include/highs/simplex/HEkkDualRow.h +201 -0
- data/ext/lpsolver-highs/build/include/highs/simplex/HEkkPrimal.h +191 -0
- data/ext/lpsolver-highs/build/include/highs/simplex/HSimplex.h +42 -0
- data/ext/lpsolver-highs/build/include/highs/simplex/HSimplexDebug.h +48 -0
- data/ext/lpsolver-highs/build/include/highs/simplex/HSimplexNla.h +158 -0
- data/ext/lpsolver-highs/build/include/highs/simplex/HSimplexReport.h +21 -0
- data/ext/lpsolver-highs/build/include/highs/simplex/HighsSimplexAnalysis.h +500 -0
- data/ext/lpsolver-highs/build/include/highs/simplex/SimplexConst.h +273 -0
- data/ext/lpsolver-highs/build/include/highs/simplex/SimplexStruct.h +263 -0
- data/ext/lpsolver-highs/build/include/highs/simplex/SimplexTimer.h +414 -0
- data/ext/lpsolver-highs/build/include/highs/test_kkt/DevKkt.h +143 -0
- data/ext/lpsolver-highs/build/include/highs/test_kkt/KktCh2.h +79 -0
- data/ext/lpsolver-highs/build/include/highs/util/FactorTimer.h +199 -0
- data/ext/lpsolver-highs/build/include/highs/util/HFactor.h +587 -0
- data/ext/lpsolver-highs/build/include/highs/util/HFactorConst.h +81 -0
- data/ext/lpsolver-highs/build/include/highs/util/HFactorDebug.h +55 -0
- data/ext/lpsolver-highs/build/include/highs/util/HSet.h +89 -0
- data/ext/lpsolver-highs/build/include/highs/util/HVector.h +22 -0
- data/ext/lpsolver-highs/build/include/highs/util/HVectorBase.h +102 -0
- data/ext/lpsolver-highs/build/include/highs/util/HighsCDouble.h +323 -0
- data/ext/lpsolver-highs/build/include/highs/util/HighsComponent.h +53 -0
- data/ext/lpsolver-highs/build/include/highs/util/HighsDataStack.h +83 -0
- data/ext/lpsolver-highs/build/include/highs/util/HighsDisjointSets.h +107 -0
- data/ext/lpsolver-highs/build/include/highs/util/HighsHash.h +1274 -0
- data/ext/lpsolver-highs/build/include/highs/util/HighsHashTree.h +1461 -0
- data/ext/lpsolver-highs/build/include/highs/util/HighsInt.h +36 -0
- data/ext/lpsolver-highs/build/include/highs/util/HighsIntegers.h +212 -0
- data/ext/lpsolver-highs/build/include/highs/util/HighsLinearSumBounds.h +203 -0
- data/ext/lpsolver-highs/build/include/highs/util/HighsMatrixPic.h +37 -0
- data/ext/lpsolver-highs/build/include/highs/util/HighsMatrixSlice.h +561 -0
- data/ext/lpsolver-highs/build/include/highs/util/HighsMatrixUtils.h +57 -0
- data/ext/lpsolver-highs/build/include/highs/util/HighsMemoryAllocation.h +63 -0
- data/ext/lpsolver-highs/build/include/highs/util/HighsRandom.h +242 -0
- data/ext/lpsolver-highs/build/include/highs/util/HighsRbTree.h +452 -0
- data/ext/lpsolver-highs/build/include/highs/util/HighsSort.h +131 -0
- data/ext/lpsolver-highs/build/include/highs/util/HighsSparseMatrix.h +151 -0
- data/ext/lpsolver-highs/build/include/highs/util/HighsSparseVectorSum.h +95 -0
- data/ext/lpsolver-highs/build/include/highs/util/HighsSplay.h +135 -0
- data/ext/lpsolver-highs/build/include/highs/util/HighsTimer.h +385 -0
- data/ext/lpsolver-highs/build/include/highs/util/HighsUtils.h +272 -0
- data/ext/lpsolver-highs/build/include/highs/util/stringutil.h +46 -0
- data/ext/lpsolver-highs/build/include/highs/zstr/strict_fstream.hpp +237 -0
- data/ext/lpsolver-highs/build/include/highs/zstr/zstr.hpp +473 -0
- data/ext/lpsolver-highs/build/include/highs_export.h +43 -0
- data/ext/lpsolver-highs/build/lib/cmake/highs/highs-config-version.cmake +65 -0
- data/ext/lpsolver-highs/build/lib/cmake/highs/highs-config.cmake +36 -0
- data/ext/lpsolver-highs/build/lib/cmake/highs/highs-targets-release.cmake +19 -0
- data/ext/lpsolver-highs/build/lib/cmake/highs/highs-targets.cmake +111 -0
- data/ext/lpsolver-highs/build/lib/libhighs.a +0 -0
- data/ext/lpsolver-highs/build/lib/pkgconfig/highs.pc +12 -0
- data/ext/lpsolver-highs/build/share/doc/HIGHS/AUTHORS +7 -0
- data/ext/lpsolver-highs/build/share/doc/HIGHS/CITATION.cff +29 -0
- data/ext/lpsolver-highs/build/share/doc/HIGHS/CODE_OF_CONDUCT.md +128 -0
- data/ext/lpsolver-highs/build/share/doc/HIGHS/CONTRIBUTING.md +31 -0
- data/ext/lpsolver-highs/build/share/doc/HIGHS/FEATURES.md +61 -0
- data/ext/lpsolver-highs/build/share/doc/HIGHS/LICENSE.txt +21 -0
- data/ext/lpsolver-highs/build/share/doc/HIGHS/README.md +281 -0
- data/ext/lpsolver-highs/build_webdemo.sh +46 -0
- data/ext/lpsolver-highs/check/Avgas.cpp +245 -0
- data/ext/lpsolver-highs/check/Avgas.h +44 -0
- data/ext/lpsolver-highs/check/CMakeLists.txt +573 -0
- data/ext/lpsolver-highs/check/HCheckConfig.h.bazel.in +6 -0
- data/ext/lpsolver-highs/check/HCheckConfig.h.in +12 -0
- data/ext/lpsolver-highs/check/HCheckConfig.h.meson.in +6 -0
- data/ext/lpsolver-highs/check/SpecialLps.h +405 -0
- data/ext/lpsolver-highs/check/TestAlienBasis.cpp +720 -0
- data/ext/lpsolver-highs/check/TestBasis.cpp +359 -0
- data/ext/lpsolver-highs/check/TestBasisSolves.cpp +669 -0
- data/ext/lpsolver-highs/check/TestCAPI.c +2513 -0
- data/ext/lpsolver-highs/check/TestCallbacks.cpp +608 -0
- data/ext/lpsolver-highs/check/TestCheckSolution.cpp +740 -0
- data/ext/lpsolver-highs/check/TestCrossover.cpp +111 -0
- data/ext/lpsolver-highs/check/TestDualize.cpp +172 -0
- data/ext/lpsolver-highs/check/TestEkk.cpp +100 -0
- data/ext/lpsolver-highs/check/TestFactor.cpp +389 -0
- data/ext/lpsolver-highs/check/TestFilereader.cpp +568 -0
- data/ext/lpsolver-highs/check/TestFortranAPI.f90 +65 -0
- data/ext/lpsolver-highs/check/TestHSet.cpp +80 -0
- data/ext/lpsolver-highs/check/TestHighsCDouble.cpp +109 -0
- data/ext/lpsolver-highs/check/TestHighsGFkSolve.cpp +102 -0
- data/ext/lpsolver-highs/check/TestHighsHash.cpp +126 -0
- data/ext/lpsolver-highs/check/TestHighsHessian.cpp +329 -0
- data/ext/lpsolver-highs/check/TestHighsIntegers.cpp +42 -0
- data/ext/lpsolver-highs/check/TestHighsModel.cpp +134 -0
- data/ext/lpsolver-highs/check/TestHighsParallel.cpp +277 -0
- data/ext/lpsolver-highs/check/TestHighsRbTree.cpp +109 -0
- data/ext/lpsolver-highs/check/TestHighsSparseMatrix.cpp +126 -0
- data/ext/lpsolver-highs/check/TestHighsVersion.cpp +61 -0
- data/ext/lpsolver-highs/check/TestHipo.cpp +122 -0
- data/ext/lpsolver-highs/check/TestICrash.cpp +46 -0
- data/ext/lpsolver-highs/check/TestIO.cpp +163 -0
- data/ext/lpsolver-highs/check/TestIis.cpp +1063 -0
- data/ext/lpsolver-highs/check/TestInfo.cpp +116 -0
- data/ext/lpsolver-highs/check/TestIpm.cpp +226 -0
- data/ext/lpsolver-highs/check/TestIpx.cpp +96 -0
- data/ext/lpsolver-highs/check/TestLPFileFormat.cpp +22 -0
- data/ext/lpsolver-highs/check/TestLogging.cpp +69 -0
- data/ext/lpsolver-highs/check/TestLpModification.cpp +2497 -0
- data/ext/lpsolver-highs/check/TestLpOrientation.cpp +121 -0
- data/ext/lpsolver-highs/check/TestLpSolvers.cpp +555 -0
- data/ext/lpsolver-highs/check/TestLpValidation.cpp +689 -0
- data/ext/lpsolver-highs/check/TestMain.cpp +6 -0
- data/ext/lpsolver-highs/check/TestMipSolver.cpp +1406 -0
- data/ext/lpsolver-highs/check/TestModelProperties.cpp +143 -0
- data/ext/lpsolver-highs/check/TestMultiObjective.cpp +198 -0
- data/ext/lpsolver-highs/check/TestNames.cpp +187 -0
- data/ext/lpsolver-highs/check/TestOptions.cpp +544 -0
- data/ext/lpsolver-highs/check/TestPdlp.cpp +327 -0
- data/ext/lpsolver-highs/check/TestPdlpHi.cpp +40 -0
- data/ext/lpsolver-highs/check/TestPresolve.cpp +912 -0
- data/ext/lpsolver-highs/check/TestQpSolver.cpp +1345 -0
- data/ext/lpsolver-highs/check/TestRanging.cpp +558 -0
- data/ext/lpsolver-highs/check/TestRays.cpp +1010 -0
- data/ext/lpsolver-highs/check/TestSemiVariables.cpp +329 -0
- data/ext/lpsolver-highs/check/TestSetup.cpp +12 -0
- data/ext/lpsolver-highs/check/TestSort.cpp +247 -0
- data/ext/lpsolver-highs/check/TestSpecialLps.cpp +775 -0
- data/ext/lpsolver-highs/check/TestThrow.cpp +83 -0
- data/ext/lpsolver-highs/check/TestTspSolver.cpp +19 -0
- data/ext/lpsolver-highs/check/TestUserScale.cpp +444 -0
- data/ext/lpsolver-highs/check/cublas_example.cpp +76 -0
- data/ext/lpsolver-highs/check/cublas_gpu_start.cpp +88 -0
- data/ext/lpsolver-highs/check/hipo_test_option_files/hipo_options_0 +1 -0
- data/ext/lpsolver-highs/check/instances/1448.lp +1 -0
- data/ext/lpsolver-highs/check/instances/1449a.lp +1 -0
- data/ext/lpsolver-highs/check/instances/1449b.lp +1 -0
- data/ext/lpsolver-highs/check/instances/1451.lp +8 -0
- data/ext/lpsolver-highs/check/instances/2122.lp +1822 -0
- data/ext/lpsolver-highs/check/instances/2171.mps +717 -0
- data/ext/lpsolver-highs/check/instances/25fv47.mps +6919 -0
- data/ext/lpsolver-highs/check/instances/2821-duplicate.mps +31 -0
- data/ext/lpsolver-highs/check/instances/2821-qmatrix.mps +31 -0
- data/ext/lpsolver-highs/check/instances/2821-quadobj.mps +29 -0
- data/ext/lpsolver-highs/check/instances/2821-summation.mps +30 -0
- data/ext/lpsolver-highs/check/instances/2821.mps +29 -0
- data/ext/lpsolver-highs/check/instances/2894.mps +89 -0
- data/ext/lpsolver-highs/check/instances/80bau3b.mps +23732 -0
- data/ext/lpsolver-highs/check/instances/WithInf.set +3 -0
- data/ext/lpsolver-highs/check/instances/adlittle.mps +335 -0
- data/ext/lpsolver-highs/check/instances/afiro.mps +83 -0
- data/ext/lpsolver-highs/check/instances/avgas.mps +51 -0
- data/ext/lpsolver-highs/check/instances/bell5.mps +384 -0
- data/ext/lpsolver-highs/check/instances/bgetam.mps +2112 -0
- data/ext/lpsolver-highs/check/instances/blending.mps +13 -0
- data/ext/lpsolver-highs/check/instances/box1.mps +1085 -0
- data/ext/lpsolver-highs/check/instances/chip.mps +13 -0
- data/ext/lpsolver-highs/check/instances/comment.mps +23 -0
- data/ext/lpsolver-highs/check/instances/cplex1.mps +9674 -0
- data/ext/lpsolver-highs/check/instances/dD2e.mps +10 -0
- data/ext/lpsolver-highs/check/instances/dcmulti.mps +2310 -0
- data/ext/lpsolver-highs/check/instances/e226.mps +1733 -0
- data/ext/lpsolver-highs/check/instances/egout-ac.mps +473 -0
- data/ext/lpsolver-highs/check/instances/egout.mps +403 -0
- data/ext/lpsolver-highs/check/instances/etamacro.mps +2084 -0
- data/ext/lpsolver-highs/check/instances/ex72a.mps +849 -0
- data/ext/lpsolver-highs/check/instances/fixed-binary.lp +11 -0
- data/ext/lpsolver-highs/check/instances/flugpl.mps +111 -0
- data/ext/lpsolver-highs/check/instances/flugpl_illegal_integer.sol +24 -0
- data/ext/lpsolver-highs/check/instances/flugpl_integer.sol +25 -0
- data/ext/lpsolver-highs/check/instances/forest6.mps +261 -0
- data/ext/lpsolver-highs/check/instances/galenet.mps +34 -0
- data/ext/lpsolver-highs/check/instances/gams10am.mps +478 -0
- data/ext/lpsolver-highs/check/instances/garbage.ems +3 -0
- data/ext/lpsolver-highs/check/instances/garbage.lp +3 -0
- data/ext/lpsolver-highs/check/instances/garbage.mps +3 -0
- data/ext/lpsolver-highs/check/instances/gas11.mps +2924 -0
- data/ext/lpsolver-highs/check/instances/gesa2.mps +5459 -0
- data/ext/lpsolver-highs/check/instances/greenbea.mps +19215 -0
- data/ext/lpsolver-highs/check/instances/gt2.mps +534 -0
- data/ext/lpsolver-highs/check/instances/infeasible-mip0.mps +140 -0
- data/ext/lpsolver-highs/check/instances/infeasible-mip1.mps +371 -0
- data/ext/lpsolver-highs/check/instances/israel.mps +1490 -0
- data/ext/lpsolver-highs/check/instances/issue-2095.mps +836 -0
- data/ext/lpsolver-highs/check/instances/issue-2173.mps +3331 -0
- data/ext/lpsolver-highs/check/instances/issue-2204.mps +143 -0
- data/ext/lpsolver-highs/check/instances/issue-2290.mps +158 -0
- data/ext/lpsolver-highs/check/instances/issue-2388.lp +76 -0
- data/ext/lpsolver-highs/check/instances/issue-2402.mps +435 -0
- data/ext/lpsolver-highs/check/instances/issue-2446.mps +9154 -0
- data/ext/lpsolver-highs/check/instances/issue-2585.lp +16 -0
- data/ext/lpsolver-highs/check/instances/issue-2874-3.mps +97 -0
- data/ext/lpsolver-highs/check/instances/klein1.mps +422 -0
- data/ext/lpsolver-highs/check/instances/lseu.mps +371 -0
- data/ext/lpsolver-highs/check/instances/model.xyz +1 -0
- data/ext/lpsolver-highs/check/instances/nan0.mps +13 -0
- data/ext/lpsolver-highs/check/instances/nan1.mps +13 -0
- data/ext/lpsolver-highs/check/instances/nan2.mps +13 -0
- data/ext/lpsolver-highs/check/instances/no-newline-eof.lp +5 -0
- data/ext/lpsolver-highs/check/instances/p01.mps +909 -0
- data/ext/lpsolver-highs/check/instances/p0548.mps +1992 -0
- data/ext/lpsolver-highs/check/instances/primal1.mps +3909 -0
- data/ext/lpsolver-highs/check/instances/qap04.mps +606 -0
- data/ext/lpsolver-highs/check/instances/qcqp.lp +8 -0
- data/ext/lpsolver-highs/check/instances/qjh.lp +9 -0
- data/ext/lpsolver-highs/check/instances/qjh.mps +18 -0
- data/ext/lpsolver-highs/check/instances/qjh_qmatrix.mps +19 -0
- data/ext/lpsolver-highs/check/instances/qjh_quadobj.mps +18 -0
- data/ext/lpsolver-highs/check/instances/qjh_quadobj_qmatrix.mps +25 -0
- data/ext/lpsolver-highs/check/instances/qjh_uncon.lp +10 -0
- data/ext/lpsolver-highs/check/instances/qjh_uncon.mps +17 -0
- data/ext/lpsolver-highs/check/instances/qpinfeasible.lp +8 -0
- data/ext/lpsolver-highs/check/instances/qptestnw.lp +7 -0
- data/ext/lpsolver-highs/check/instances/qpunbounded.lp +5 -0
- data/ext/lpsolver-highs/check/instances/refinery.mps +1882 -0
- data/ext/lpsolver-highs/check/instances/rgn.mps +559 -0
- data/ext/lpsolver-highs/check/instances/scrs8.mps +2717 -0
- data/ext/lpsolver-highs/check/instances/sctest.mps +66 -0
- data/ext/lpsolver-highs/check/instances/semi-continuous.lp +13 -0
- data/ext/lpsolver-highs/check/instances/semi-continuous.mps +24 -0
- data/ext/lpsolver-highs/check/instances/semi-integer.lp +15 -0
- data/ext/lpsolver-highs/check/instances/semi-integer.mps +22 -0
- data/ext/lpsolver-highs/check/instances/shell.mps +4039 -0
- data/ext/lpsolver-highs/check/instances/silly-names.mps +14 -0
- data/ext/lpsolver-highs/check/instances/small_mip.mps +87 -0
- data/ext/lpsolver-highs/check/instances/smalllp.mps +21 -0
- data/ext/lpsolver-highs/check/instances/sp150x300d.mps +1983 -0
- data/ext/lpsolver-highs/check/instances/stair.mps +2499 -0
- data/ext/lpsolver-highs/check/instances/standata.mps +2317 -0
- data/ext/lpsolver-highs/check/instances/standgub.mps +2428 -0
- data/ext/lpsolver-highs/check/instances/standmps.mps +2695 -0
- data/ext/lpsolver-highs/check/instances/test.mps +53 -0
- data/ext/lpsolver-highs/check/instances/vol1.mps +1895 -0
- data/ext/lpsolver-highs/check/instances/warnings.mps +68 -0
- data/ext/lpsolver-highs/check/instances/woodinfe.mps +216 -0
- data/ext/lpsolver-highs/check/matrix_multiplication.hpp +49 -0
- data/ext/lpsolver-highs/check/meson.build +92 -0
- data/ext/lpsolver-highs/check/pythontest.py +11 -0
- data/ext/lpsolver-highs/check/sample_options_file +8 -0
- data/ext/lpsolver-highs/cmake/CheckAtomic.cmake +74 -0
- data/ext/lpsolver-highs/cmake/FindCUDAConf.cmake +44 -0
- data/ext/lpsolver-highs/cmake/FindHipoDeps.cmake +351 -0
- data/ext/lpsolver-highs/cmake/README.md +243 -0
- data/ext/lpsolver-highs/cmake/cpp-highs.cmake +243 -0
- data/ext/lpsolver-highs/cmake/dotnet.cmake +94 -0
- data/ext/lpsolver-highs/cmake/highs-config.cmake.in +22 -0
- data/ext/lpsolver-highs/cmake/python-highs.cmake +74 -0
- data/ext/lpsolver-highs/cmake/set-version.cmake +26 -0
- data/ext/lpsolver-highs/cmake/sources-python.cmake +461 -0
- data/ext/lpsolver-highs/cmake/sources.cmake +618 -0
- data/ext/lpsolver-highs/docs/HiGHS_CopyrightHeader.pl +78 -0
- data/ext/lpsolver-highs/docs/HiGHS_CopyrightHeaderUpdateAll +32 -0
- data/ext/lpsolver-highs/docs/Project.toml +7 -0
- data/ext/lpsolver-highs/docs/README.md +27 -0
- data/ext/lpsolver-highs/docs/c_api_gen/HConfig.h +1 -0
- data/ext/lpsolver-highs/docs/c_api_gen/build.jl +48 -0
- data/ext/lpsolver-highs/docs/make.jl +115 -0
- data/ext/lpsolver-highs/docs/src/assets/logo.png +0 -0
- data/ext/lpsolver-highs/docs/src/callbacks.md +171 -0
- data/ext/lpsolver-highs/docs/src/executable.md +88 -0
- data/ext/lpsolver-highs/docs/src/guide/advanced.md +66 -0
- data/ext/lpsolver-highs/docs/src/guide/basic.md +116 -0
- data/ext/lpsolver-highs/docs/src/guide/further.md +193 -0
- data/ext/lpsolver-highs/docs/src/guide/gpu.md +58 -0
- data/ext/lpsolver-highs/docs/src/guide/index.md +18 -0
- data/ext/lpsolver-highs/docs/src/guide/kkt.md +219 -0
- data/ext/lpsolver-highs/docs/src/guide/numerics.md +55 -0
- data/ext/lpsolver-highs/docs/src/index.md +86 -0
- data/ext/lpsolver-highs/docs/src/installation.md +130 -0
- data/ext/lpsolver-highs/docs/src/interfaces/c_api.md +6 -0
- data/ext/lpsolver-highs/docs/src/interfaces/cpp/examples.md +1 -0
- data/ext/lpsolver-highs/docs/src/interfaces/cpp/index.md +29 -0
- data/ext/lpsolver-highs/docs/src/interfaces/cpp/library.md +107 -0
- data/ext/lpsolver-highs/docs/src/interfaces/csharp.md +55 -0
- data/ext/lpsolver-highs/docs/src/interfaces/fortran.md +11 -0
- data/ext/lpsolver-highs/docs/src/interfaces/julia/index.md +130 -0
- data/ext/lpsolver-highs/docs/src/interfaces/other.md +41 -0
- data/ext/lpsolver-highs/docs/src/interfaces/python/example-py.md +275 -0
- data/ext/lpsolver-highs/docs/src/interfaces/python/index.md +91 -0
- data/ext/lpsolver-highs/docs/src/interfaces/python/model-py.md +90 -0
- data/ext/lpsolver-highs/docs/src/options/definitions.md +529 -0
- data/ext/lpsolver-highs/docs/src/options/intro.md +46 -0
- data/ext/lpsolver-highs/docs/src/parallel.md +88 -0
- data/ext/lpsolver-highs/docs/src/solvers.md +168 -0
- data/ext/lpsolver-highs/docs/src/structures/classes/HighsHessian.md +9 -0
- data/ext/lpsolver-highs/docs/src/structures/classes/HighsIis.md +16 -0
- data/ext/lpsolver-highs/docs/src/structures/classes/HighsLp.md +19 -0
- data/ext/lpsolver-highs/docs/src/structures/classes/HighsModel.md +6 -0
- data/ext/lpsolver-highs/docs/src/structures/classes/HighsSparseMatrix.md +10 -0
- data/ext/lpsolver-highs/docs/src/structures/classes/index.md +11 -0
- data/ext/lpsolver-highs/docs/src/structures/enums.md +114 -0
- data/ext/lpsolver-highs/docs/src/structures/index.md +12 -0
- data/ext/lpsolver-highs/docs/src/structures/structs/HighsBasis.md +8 -0
- data/ext/lpsolver-highs/docs/src/structures/structs/HighsInfo.md +148 -0
- data/ext/lpsolver-highs/docs/src/structures/structs/HighsLinearObjective.md +11 -0
- data/ext/lpsolver-highs/docs/src/structures/structs/HighsSolution.md +10 -0
- data/ext/lpsolver-highs/docs/src/structures/structs/index.md +10 -0
- data/ext/lpsolver-highs/docs/src/terminology.md +163 -0
- data/ext/lpsolver-highs/examples/CMakeLists.txt +26 -0
- data/ext/lpsolver-highs/examples/Docs.py +104 -0
- data/ext/lpsolver-highs/examples/branch-and-price.py +465 -0
- data/ext/lpsolver-highs/examples/call_highs_from_c.c +685 -0
- data/ext/lpsolver-highs/examples/call_highs_from_c_minimal.c +659 -0
- data/ext/lpsolver-highs/examples/call_highs_from_cpp.cpp +178 -0
- data/ext/lpsolver-highs/examples/call_highs_from_csharp.cs +83 -0
- data/ext/lpsolver-highs/examples/call_highs_from_fortran.f90 +579 -0
- data/ext/lpsolver-highs/examples/call_highs_from_python.py +448 -0
- data/ext/lpsolver-highs/examples/call_highs_from_python_highspy.py +71 -0
- data/ext/lpsolver-highs/examples/call_highs_from_python_mps.py +59 -0
- data/ext/lpsolver-highs/examples/callback_gap.py +71 -0
- data/ext/lpsolver-highs/examples/chip.py +43 -0
- data/ext/lpsolver-highs/examples/chip0.py +29 -0
- data/ext/lpsolver-highs/examples/distillation.py +77 -0
- data/ext/lpsolver-highs/examples/knapsack.py +43 -0
- data/ext/lpsolver-highs/examples/minimal.py +11 -0
- data/ext/lpsolver-highs/examples/multi_objective.py +139 -0
- data/ext/lpsolver-highs/examples/multiple_objective.py +120 -0
- data/ext/lpsolver-highs/examples/network_flow.py +37 -0
- data/ext/lpsolver-highs/examples/nqueens.py +29 -0
- data/ext/lpsolver-highs/examples/plot_highs_log.py +134 -0
- data/ext/lpsolver-highs/extern/CLI11.hpp +11546 -0
- data/ext/lpsolver-highs/extern/LICENCE_1_0.txt +23 -0
- data/ext/lpsolver-highs/extern/amd/License.txt +35 -0
- data/ext/lpsolver-highs/extern/amd/SuiteSparse_config.c +54 -0
- data/ext/lpsolver-highs/extern/amd/SuiteSparse_config.h +56 -0
- data/ext/lpsolver-highs/extern/amd/amd.h +357 -0
- data/ext/lpsolver-highs/extern/amd/amd_1.c +172 -0
- data/ext/lpsolver-highs/extern/amd/amd_2.c +1761 -0
- data/ext/lpsolver-highs/extern/amd/amd_aat.c +179 -0
- data/ext/lpsolver-highs/extern/amd/amd_control.c +65 -0
- data/ext/lpsolver-highs/extern/amd/amd_defaults.c +37 -0
- data/ext/lpsolver-highs/extern/amd/amd_info.c +120 -0
- data/ext/lpsolver-highs/extern/amd/amd_internal.h +137 -0
- data/ext/lpsolver-highs/extern/amd/amd_order.c +195 -0
- data/ext/lpsolver-highs/extern/amd/amd_post_tree.c +105 -0
- data/ext/lpsolver-highs/extern/amd/amd_postorder.c +140 -0
- data/ext/lpsolver-highs/extern/amd/amd_preprocess.c +107 -0
- data/ext/lpsolver-highs/extern/amd/amd_valid.c +93 -0
- data/ext/lpsolver-highs/extern/amd/changes.txt +8 -0
- data/ext/lpsolver-highs/extern/catch.hpp +18861 -0
- data/ext/lpsolver-highs/extern/metis/Changes.txt +31 -0
- data/ext/lpsolver-highs/extern/metis/GKlib/GKlib.h +62 -0
- data/ext/lpsolver-highs/extern/metis/GKlib/error.c +21 -0
- data/ext/lpsolver-highs/extern/metis/GKlib/gk_arch.h +64 -0
- data/ext/lpsolver-highs/extern/metis/GKlib/gk_defs.h +19 -0
- data/ext/lpsolver-highs/extern/metis/GKlib/gk_macros.h +50 -0
- data/ext/lpsolver-highs/extern/metis/GKlib/gk_mkblas.h +51 -0
- data/ext/lpsolver-highs/extern/metis/GKlib/gk_mkmemory.h +80 -0
- data/ext/lpsolver-highs/extern/metis/GKlib/gk_mkpqueue.h +329 -0
- data/ext/lpsolver-highs/extern/metis/GKlib/gk_mkrandom.h +89 -0
- data/ext/lpsolver-highs/extern/metis/GKlib/gk_mksort.h +271 -0
- data/ext/lpsolver-highs/extern/metis/GKlib/gk_ms_inttypes.h +41 -0
- data/ext/lpsolver-highs/extern/metis/GKlib/gk_ms_stat.h +22 -0
- data/ext/lpsolver-highs/extern/metis/GKlib/gk_ms_stdint.h +41 -0
- data/ext/lpsolver-highs/extern/metis/GKlib/gk_proto.h +50 -0
- data/ext/lpsolver-highs/extern/metis/GKlib/gk_struct.h +66 -0
- data/ext/lpsolver-highs/extern/metis/GKlib/gk_types.h +15 -0
- data/ext/lpsolver-highs/extern/metis/GKlib/mcore.c +176 -0
- data/ext/lpsolver-highs/extern/metis/GKlib/memory.c +23 -0
- data/ext/lpsolver-highs/extern/metis/GKlib/random.c +37 -0
- data/ext/lpsolver-highs/extern/metis/LICENSE.txt +18 -0
- data/ext/lpsolver-highs/extern/metis/libmetis/auxapi.c +27 -0
- data/ext/lpsolver-highs/extern/metis/libmetis/balance.c +491 -0
- data/ext/lpsolver-highs/extern/metis/libmetis/bucketsort.c +44 -0
- data/ext/lpsolver-highs/extern/metis/libmetis/coarsen.c +895 -0
- data/ext/lpsolver-highs/extern/metis/libmetis/compress.c +231 -0
- data/ext/lpsolver-highs/extern/metis/libmetis/contig.c +83 -0
- data/ext/lpsolver-highs/extern/metis/libmetis/defs.h +39 -0
- data/ext/lpsolver-highs/extern/metis/libmetis/fm.c +527 -0
- data/ext/lpsolver-highs/extern/metis/libmetis/gklib.c +55 -0
- data/ext/lpsolver-highs/extern/metis/libmetis/gklib_defs.h +33 -0
- data/ext/lpsolver-highs/extern/metis/libmetis/graph.c +268 -0
- data/ext/lpsolver-highs/extern/metis/libmetis/initpart.c +385 -0
- data/ext/lpsolver-highs/extern/metis/libmetis/macros.h +59 -0
- data/ext/lpsolver-highs/extern/metis/libmetis/mcutil.c +162 -0
- data/ext/lpsolver-highs/extern/metis/libmetis/metislib.h +35 -0
- data/ext/lpsolver-highs/extern/metis/libmetis/mmd.c +598 -0
- data/ext/lpsolver-highs/extern/metis/libmetis/ometis.c +661 -0
- data/ext/lpsolver-highs/extern/metis/libmetis/options.c +260 -0
- data/ext/lpsolver-highs/extern/metis/libmetis/proto.h +172 -0
- data/ext/lpsolver-highs/extern/metis/libmetis/refine.c +99 -0
- data/ext/lpsolver-highs/extern/metis/libmetis/separator.c +57 -0
- data/ext/lpsolver-highs/extern/metis/libmetis/sfm.c +581 -0
- data/ext/lpsolver-highs/extern/metis/libmetis/srefine.c +152 -0
- data/ext/lpsolver-highs/extern/metis/libmetis/stdheaders.h +29 -0
- data/ext/lpsolver-highs/extern/metis/libmetis/struct.h +117 -0
- data/ext/lpsolver-highs/extern/metis/libmetis/util.c +59 -0
- data/ext/lpsolver-highs/extern/metis/libmetis/wspace.c +91 -0
- data/ext/lpsolver-highs/extern/metis/metis.h +271 -0
- data/ext/lpsolver-highs/extern/pdqsort/license.txt +16 -0
- data/ext/lpsolver-highs/extern/pdqsort/pdqsort.h +532 -0
- data/ext/lpsolver-highs/extern/rcm/LICENSE +19 -0
- data/ext/lpsolver-highs/extern/rcm/rcm.cpp +873 -0
- data/ext/lpsolver-highs/extern/rcm/rcm.h +22 -0
- data/ext/lpsolver-highs/extern/zstr/LICENSE +21 -0
- data/ext/lpsolver-highs/extern/zstr/strict_fstream.hpp +237 -0
- data/ext/lpsolver-highs/extern/zstr/zstr.hpp +473 -0
- data/ext/lpsolver-highs/flake.lock +61 -0
- data/ext/lpsolver-highs/flake.nix +73 -0
- data/ext/lpsolver-highs/highs/CMakeLists.txt +499 -0
- data/ext/lpsolver-highs/highs/HConfig.h.bazel.in +25 -0
- data/ext/lpsolver-highs/highs/HConfig.h.in +22 -0
- data/ext/lpsolver-highs/highs/HConfig.h.meson.in +17 -0
- data/ext/lpsolver-highs/highs/Highs.h +1812 -0
- data/ext/lpsolver-highs/highs/HighsRun.md +143 -0
- data/ext/lpsolver-highs/highs/highs_bindings.cpp +1826 -0
- data/ext/lpsolver-highs/highs/highspy/__init__.py +93 -0
- data/ext/lpsolver-highs/highs/highspy/__init__.pyi +91 -0
- data/ext/lpsolver-highs/highs/highspy/_core/__init__.pyi +1058 -0
- data/ext/lpsolver-highs/highs/highspy/_core/cb.pyi +118 -0
- data/ext/lpsolver-highs/highs/highspy/_core/simplex_constants.pyi +472 -0
- data/ext/lpsolver-highs/highs/highspy/highs.py +2430 -0
- data/ext/lpsolver-highs/highs/interfaces/highs_c_api.cpp +1812 -0
- data/ext/lpsolver-highs/highs/interfaces/highs_c_api.h +2651 -0
- data/ext/lpsolver-highs/highs/interfaces/highs_csharp_api.cs +1142 -0
- data/ext/lpsolver-highs/highs/interfaces/highs_fortran_api.f90 +873 -0
- data/ext/lpsolver-highs/highs/io/Filereader.cpp +87 -0
- data/ext/lpsolver-highs/highs/io/Filereader.h +45 -0
- data/ext/lpsolver-highs/highs/io/FilereaderLp.cpp +539 -0
- data/ext/lpsolver-highs/highs/io/FilereaderLp.h +49 -0
- data/ext/lpsolver-highs/highs/io/FilereaderMps.cpp +86 -0
- data/ext/lpsolver-highs/highs/io/FilereaderMps.h +27 -0
- data/ext/lpsolver-highs/highs/io/HMPSIO.cpp +1001 -0
- data/ext/lpsolver-highs/highs/io/HMPSIO.h +78 -0
- data/ext/lpsolver-highs/highs/io/HMpsFF.cpp +2113 -0
- data/ext/lpsolver-highs/highs/io/HMpsFF.h +245 -0
- data/ext/lpsolver-highs/highs/io/HighsIO.cpp +371 -0
- data/ext/lpsolver-highs/highs/io/HighsIO.h +118 -0
- data/ext/lpsolver-highs/highs/io/LoadOptions.cpp +60 -0
- data/ext/lpsolver-highs/highs/io/LoadOptions.h +24 -0
- data/ext/lpsolver-highs/highs/io/filereaderlp/LICENSE +19 -0
- data/ext/lpsolver-highs/highs/io/filereaderlp/builder.hpp +25 -0
- data/ext/lpsolver-highs/highs/io/filereaderlp/def.hpp +19 -0
- data/ext/lpsolver-highs/highs/io/filereaderlp/model.hpp +68 -0
- data/ext/lpsolver-highs/highs/io/filereaderlp/reader.cpp +1375 -0
- data/ext/lpsolver-highs/highs/io/filereaderlp/reader.hpp +10 -0
- data/ext/lpsolver-highs/highs/ipm/IpxSolution.h +32 -0
- data/ext/lpsolver-highs/highs/ipm/IpxWrapper.cpp +1526 -0
- data/ext/lpsolver-highs/highs/ipm/IpxWrapper.h +106 -0
- data/ext/lpsolver-highs/highs/ipm/basiclu/basiclu.h +161 -0
- data/ext/lpsolver-highs/highs/ipm/basiclu/basiclu_factorize.c +132 -0
- data/ext/lpsolver-highs/highs/ipm/basiclu/basiclu_factorize.h +247 -0
- data/ext/lpsolver-highs/highs/ipm/basiclu/basiclu_get_factors.c +148 -0
- data/ext/lpsolver-highs/highs/ipm/basiclu/basiclu_get_factors.h +108 -0
- data/ext/lpsolver-highs/highs/ipm/basiclu/basiclu_initialize.c +24 -0
- data/ext/lpsolver-highs/highs/ipm/basiclu/basiclu_initialize.h +119 -0
- data/ext/lpsolver-highs/highs/ipm/basiclu/basiclu_obj_factorize.h +34 -0
- data/ext/lpsolver-highs/highs/ipm/basiclu/basiclu_obj_free.h +19 -0
- data/ext/lpsolver-highs/highs/ipm/basiclu/basiclu_obj_get_factors.h +34 -0
- data/ext/lpsolver-highs/highs/ipm/basiclu/basiclu_obj_initialize.h +46 -0
- data/ext/lpsolver-highs/highs/ipm/basiclu/basiclu_obj_solve_dense.h +29 -0
- data/ext/lpsolver-highs/highs/ipm/basiclu/basiclu_obj_solve_for_update.h +42 -0
- data/ext/lpsolver-highs/highs/ipm/basiclu/basiclu_obj_solve_sparse.h +32 -0
- data/ext/lpsolver-highs/highs/ipm/basiclu/basiclu_obj_update.h +31 -0
- data/ext/lpsolver-highs/highs/ipm/basiclu/basiclu_object.c +325 -0
- data/ext/lpsolver-highs/highs/ipm/basiclu/basiclu_object.h +30 -0
- data/ext/lpsolver-highs/highs/ipm/basiclu/basiclu_solve_dense.c +46 -0
- data/ext/lpsolver-highs/highs/ipm/basiclu/basiclu_solve_dense.h +75 -0
- data/ext/lpsolver-highs/highs/ipm/basiclu/basiclu_solve_for_update.c +79 -0
- data/ext/lpsolver-highs/highs/ipm/basiclu/basiclu_solve_for_update.h +169 -0
- data/ext/lpsolver-highs/highs/ipm/basiclu/basiclu_solve_sparse.c +63 -0
- data/ext/lpsolver-highs/highs/ipm/basiclu/basiclu_solve_sparse.h +112 -0
- data/ext/lpsolver-highs/highs/ipm/basiclu/basiclu_update.c +44 -0
- data/ext/lpsolver-highs/highs/ipm/basiclu/basiclu_update.h +125 -0
- data/ext/lpsolver-highs/highs/ipm/basiclu/lu_build_factors.c +441 -0
- data/ext/lpsolver-highs/highs/ipm/basiclu/lu_condest.c +124 -0
- data/ext/lpsolver-highs/highs/ipm/basiclu/lu_def.h +39 -0
- data/ext/lpsolver-highs/highs/ipm/basiclu/lu_dfs.c +141 -0
- data/ext/lpsolver-highs/highs/ipm/basiclu/lu_factorize_bump.c +56 -0
- data/ext/lpsolver-highs/highs/ipm/basiclu/lu_file.c +184 -0
- data/ext/lpsolver-highs/highs/ipm/basiclu/lu_file.h +21 -0
- data/ext/lpsolver-highs/highs/ipm/basiclu/lu_garbage_perm.c +53 -0
- data/ext/lpsolver-highs/highs/ipm/basiclu/lu_initialize.c +56 -0
- data/ext/lpsolver-highs/highs/ipm/basiclu/lu_internal.c +352 -0
- data/ext/lpsolver-highs/highs/ipm/basiclu/lu_internal.h +220 -0
- data/ext/lpsolver-highs/highs/ipm/basiclu/lu_list.h +173 -0
- data/ext/lpsolver-highs/highs/ipm/basiclu/lu_markowitz.c +188 -0
- data/ext/lpsolver-highs/highs/ipm/basiclu/lu_matrix_norm.c +51 -0
- data/ext/lpsolver-highs/highs/ipm/basiclu/lu_pivot.c +1247 -0
- data/ext/lpsolver-highs/highs/ipm/basiclu/lu_residual_test.c +155 -0
- data/ext/lpsolver-highs/highs/ipm/basiclu/lu_setup_bump.c +198 -0
- data/ext/lpsolver-highs/highs/ipm/basiclu/lu_singletons.c +511 -0
- data/ext/lpsolver-highs/highs/ipm/basiclu/lu_solve_dense.c +129 -0
- data/ext/lpsolver-highs/highs/ipm/basiclu/lu_solve_for_update.c +360 -0
- data/ext/lpsolver-highs/highs/ipm/basiclu/lu_solve_sparse.c +284 -0
- data/ext/lpsolver-highs/highs/ipm/basiclu/lu_solve_symbolic.c +48 -0
- data/ext/lpsolver-highs/highs/ipm/basiclu/lu_solve_triangular.c +140 -0
- data/ext/lpsolver-highs/highs/ipm/basiclu/lu_update.c +908 -0
- data/ext/lpsolver-highs/highs/ipm/hipo/auxiliary/Auxiliary.cpp +301 -0
- data/ext/lpsolver-highs/highs/ipm/hipo/auxiliary/Auxiliary.h +104 -0
- data/ext/lpsolver-highs/highs/ipm/hipo/auxiliary/IntConfig.h +27 -0
- data/ext/lpsolver-highs/highs/ipm/hipo/auxiliary/KrylovMethods.cpp +193 -0
- data/ext/lpsolver-highs/highs/ipm/hipo/auxiliary/KrylovMethods.h +30 -0
- data/ext/lpsolver-highs/highs/ipm/hipo/auxiliary/Log.cpp +60 -0
- data/ext/lpsolver-highs/highs/ipm/hipo/auxiliary/Log.h +62 -0
- data/ext/lpsolver-highs/highs/ipm/hipo/auxiliary/OrderingPrint.h +10 -0
- data/ext/lpsolver-highs/highs/ipm/hipo/auxiliary/VectorOperations.cpp +117 -0
- data/ext/lpsolver-highs/highs/ipm/hipo/auxiliary/VectorOperations.h +59 -0
- data/ext/lpsolver-highs/highs/ipm/hipo/auxiliary/mycblas.h +85 -0
- data/ext/lpsolver-highs/highs/ipm/hipo/factorhighs/Analyse.cpp +1367 -0
- data/ext/lpsolver-highs/highs/ipm/hipo/factorhighs/Analyse.h +122 -0
- data/ext/lpsolver-highs/highs/ipm/hipo/factorhighs/CallAndTimeBlas.cpp +114 -0
- data/ext/lpsolver-highs/highs/ipm/hipo/factorhighs/CallAndTimeBlas.h +46 -0
- data/ext/lpsolver-highs/highs/ipm/hipo/factorhighs/CliqueStack.cpp +82 -0
- data/ext/lpsolver-highs/highs/ipm/hipo/factorhighs/CliqueStack.h +83 -0
- data/ext/lpsolver-highs/highs/ipm/hipo/factorhighs/DataCollector.cpp +326 -0
- data/ext/lpsolver-highs/highs/ipm/hipo/factorhighs/DataCollector.h +86 -0
- data/ext/lpsolver-highs/highs/ipm/hipo/factorhighs/DenseFact.h +48 -0
- data/ext/lpsolver-highs/highs/ipm/hipo/factorhighs/DenseFactHybrid.cpp +279 -0
- data/ext/lpsolver-highs/highs/ipm/hipo/factorhighs/DenseFactKernel.cpp +284 -0
- data/ext/lpsolver-highs/highs/ipm/hipo/factorhighs/DgemmParallel.cpp +38 -0
- data/ext/lpsolver-highs/highs/ipm/hipo/factorhighs/DgemmParallel.h +32 -0
- data/ext/lpsolver-highs/highs/ipm/hipo/factorhighs/FactorHiGHS.cpp +57 -0
- data/ext/lpsolver-highs/highs/ipm/hipo/factorhighs/FactorHiGHS.h +112 -0
- data/ext/lpsolver-highs/highs/ipm/hipo/factorhighs/FactorHiGHSSettings.h +63 -0
- data/ext/lpsolver-highs/highs/ipm/hipo/factorhighs/Factorise.cpp +405 -0
- data/ext/lpsolver-highs/highs/ipm/hipo/factorhighs/Factorise.h +85 -0
- data/ext/lpsolver-highs/highs/ipm/hipo/factorhighs/FormatHandler.cpp +46 -0
- data/ext/lpsolver-highs/highs/ipm/hipo/factorhighs/FormatHandler.h +95 -0
- data/ext/lpsolver-highs/highs/ipm/hipo/factorhighs/HybridHybridFormatHandler.cpp +238 -0
- data/ext/lpsolver-highs/highs/ipm/hipo/factorhighs/HybridHybridFormatHandler.h +31 -0
- data/ext/lpsolver-highs/highs/ipm/hipo/factorhighs/HybridSolveHandler.cpp +272 -0
- data/ext/lpsolver-highs/highs/ipm/hipo/factorhighs/HybridSolveHandler.h +26 -0
- data/ext/lpsolver-highs/highs/ipm/hipo/factorhighs/KrylovMethodsIpm.cpp +83 -0
- data/ext/lpsolver-highs/highs/ipm/hipo/factorhighs/KrylovMethodsIpm.h +45 -0
- data/ext/lpsolver-highs/highs/ipm/hipo/factorhighs/Numeric.cpp +54 -0
- data/ext/lpsolver-highs/highs/ipm/hipo/factorhighs/Numeric.h +46 -0
- data/ext/lpsolver-highs/highs/ipm/hipo/factorhighs/ReturnValues.h +19 -0
- data/ext/lpsolver-highs/highs/ipm/hipo/factorhighs/SolveHandler.cpp +10 -0
- data/ext/lpsolver-highs/highs/ipm/hipo/factorhighs/SolveHandler.h +48 -0
- data/ext/lpsolver-highs/highs/ipm/hipo/factorhighs/Swaps.cpp +70 -0
- data/ext/lpsolver-highs/highs/ipm/hipo/factorhighs/Swaps.h +19 -0
- data/ext/lpsolver-highs/highs/ipm/hipo/factorhighs/Symbolic.cpp +101 -0
- data/ext/lpsolver-highs/highs/ipm/hipo/factorhighs/Symbolic.h +220 -0
- data/ext/lpsolver-highs/highs/ipm/hipo/factorhighs/Timing.h +114 -0
- data/ext/lpsolver-highs/highs/ipm/hipo/ipm/Control.cpp +38 -0
- data/ext/lpsolver-highs/highs/ipm/hipo/ipm/Control.h +41 -0
- data/ext/lpsolver-highs/highs/ipm/hipo/ipm/FactorHiGHSSolver.cpp +887 -0
- data/ext/lpsolver-highs/highs/ipm/hipo/ipm/FactorHiGHSSolver.h +92 -0
- data/ext/lpsolver-highs/highs/ipm/hipo/ipm/Info.h +58 -0
- data/ext/lpsolver-highs/highs/ipm/hipo/ipm/IpmData.cpp +8 -0
- data/ext/lpsolver-highs/highs/ipm/hipo/ipm/IpmData.h +37 -0
- data/ext/lpsolver-highs/highs/ipm/hipo/ipm/Iterate.cpp +640 -0
- data/ext/lpsolver-highs/highs/ipm/hipo/ipm/Iterate.h +172 -0
- data/ext/lpsolver-highs/highs/ipm/hipo/ipm/LinearSolver.h +81 -0
- data/ext/lpsolver-highs/highs/ipm/hipo/ipm/LogHighs.cpp +71 -0
- data/ext/lpsolver-highs/highs/ipm/hipo/ipm/LogHighs.h +33 -0
- data/ext/lpsolver-highs/highs/ipm/hipo/ipm/Model.cpp +403 -0
- data/ext/lpsolver-highs/highs/ipm/hipo/ipm/Model.h +136 -0
- data/ext/lpsolver-highs/highs/ipm/hipo/ipm/Options.h +35 -0
- data/ext/lpsolver-highs/highs/ipm/hipo/ipm/Parameters.h +63 -0
- data/ext/lpsolver-highs/highs/ipm/hipo/ipm/PreProcess.cpp +646 -0
- data/ext/lpsolver-highs/highs/ipm/hipo/ipm/PreProcess.h +94 -0
- data/ext/lpsolver-highs/highs/ipm/hipo/ipm/Refine.cpp +214 -0
- data/ext/lpsolver-highs/highs/ipm/hipo/ipm/Solver.cpp +1346 -0
- data/ext/lpsolver-highs/highs/ipm/hipo/ipm/Solver.h +338 -0
- data/ext/lpsolver-highs/highs/ipm/hipo/ipm/Status.h +88 -0
- data/ext/lpsolver-highs/highs/ipm/ipx/basiclu_kernel.cc +71 -0
- data/ext/lpsolver-highs/highs/ipm/ipx/basiclu_kernel.h +20 -0
- data/ext/lpsolver-highs/highs/ipm/ipx/basiclu_wrapper.cc +299 -0
- data/ext/lpsolver-highs/highs/ipm/ipx/basiclu_wrapper.h +47 -0
- data/ext/lpsolver-highs/highs/ipm/ipx/basis.cc +966 -0
- data/ext/lpsolver-highs/highs/ipm/ipx/basis.h +350 -0
- data/ext/lpsolver-highs/highs/ipm/ipx/conjugate_residuals.cc +217 -0
- data/ext/lpsolver-highs/highs/ipm/ipx/conjugate_residuals.h +74 -0
- data/ext/lpsolver-highs/highs/ipm/ipx/control.cc +151 -0
- data/ext/lpsolver-highs/highs/ipm/ipx/control.h +167 -0
- data/ext/lpsolver-highs/highs/ipm/ipx/crossover.cc +479 -0
- data/ext/lpsolver-highs/highs/ipm/ipx/crossover.h +157 -0
- data/ext/lpsolver-highs/highs/ipm/ipx/diagonal_precond.cc +70 -0
- data/ext/lpsolver-highs/highs/ipm/ipx/diagonal_precond.h +45 -0
- data/ext/lpsolver-highs/highs/ipm/ipx/forrest_tomlin.cc +360 -0
- data/ext/lpsolver-highs/highs/ipm/ipx/forrest_tomlin.h +102 -0
- data/ext/lpsolver-highs/highs/ipm/ipx/guess_basis.cc +233 -0
- data/ext/lpsolver-highs/highs/ipm/ipx/guess_basis.h +21 -0
- data/ext/lpsolver-highs/highs/ipm/ipx/indexed_vector.cc +30 -0
- data/ext/lpsolver-highs/highs/ipm/ipx/indexed_vector.h +113 -0
- data/ext/lpsolver-highs/highs/ipm/ipx/info.cc +124 -0
- data/ext/lpsolver-highs/highs/ipm/ipx/info.h +27 -0
- data/ext/lpsolver-highs/highs/ipm/ipx/ipm.cc +897 -0
- data/ext/lpsolver-highs/highs/ipm/ipx/ipm.h +94 -0
- data/ext/lpsolver-highs/highs/ipm/ipx/ipx_c.cc +83 -0
- data/ext/lpsolver-highs/highs/ipm/ipx/ipx_c.h +47 -0
- data/ext/lpsolver-highs/highs/ipm/ipx/ipx_config.h +9 -0
- data/ext/lpsolver-highs/highs/ipm/ipx/ipx_info.h +111 -0
- data/ext/lpsolver-highs/highs/ipm/ipx/ipx_internal.h +89 -0
- data/ext/lpsolver-highs/highs/ipm/ipx/ipx_parameters.h +76 -0
- data/ext/lpsolver-highs/highs/ipm/ipx/ipx_status.h +57 -0
- data/ext/lpsolver-highs/highs/ipm/ipx/iterate.cc +683 -0
- data/ext/lpsolver-highs/highs/ipm/ipx/iterate.h +331 -0
- data/ext/lpsolver-highs/highs/ipm/ipx/kkt_solver.cc +23 -0
- data/ext/lpsolver-highs/highs/ipm/ipx/kkt_solver.h +70 -0
- data/ext/lpsolver-highs/highs/ipm/ipx/kkt_solver_basis.cc +387 -0
- data/ext/lpsolver-highs/highs/ipm/ipx/kkt_solver_basis.h +66 -0
- data/ext/lpsolver-highs/highs/ipm/ipx/kkt_solver_diag.cc +120 -0
- data/ext/lpsolver-highs/highs/ipm/ipx/kkt_solver_diag.h +48 -0
- data/ext/lpsolver-highs/highs/ipm/ipx/linear_operator.cc +10 -0
- data/ext/lpsolver-highs/highs/ipm/ipx/linear_operator.h +26 -0
- data/ext/lpsolver-highs/highs/ipm/ipx/lp_solver.cc +686 -0
- data/ext/lpsolver-highs/highs/ipm/ipx/lp_solver.h +204 -0
- data/ext/lpsolver-highs/highs/ipm/ipx/lu_factorization.cc +131 -0
- data/ext/lpsolver-highs/highs/ipm/ipx/lu_factorization.h +79 -0
- data/ext/lpsolver-highs/highs/ipm/ipx/lu_update.cc +62 -0
- data/ext/lpsolver-highs/highs/ipm/ipx/lu_update.h +129 -0
- data/ext/lpsolver-highs/highs/ipm/ipx/maxvolume.cc +337 -0
- data/ext/lpsolver-highs/highs/ipm/ipx/maxvolume.h +54 -0
- data/ext/lpsolver-highs/highs/ipm/ipx/model.cc +1528 -0
- data/ext/lpsolver-highs/highs/ipm/ipx/model.h +413 -0
- data/ext/lpsolver-highs/highs/ipm/ipx/multistream.h +52 -0
- data/ext/lpsolver-highs/highs/ipm/ipx/normal_matrix.cc +126 -0
- data/ext/lpsolver-highs/highs/ipm/ipx/normal_matrix.h +44 -0
- data/ext/lpsolver-highs/highs/ipm/ipx/power_method.h +44 -0
- data/ext/lpsolver-highs/highs/ipm/ipx/sparse_matrix.cc +382 -0
- data/ext/lpsolver-highs/highs/ipm/ipx/sparse_matrix.h +195 -0
- data/ext/lpsolver-highs/highs/ipm/ipx/sparse_utils.cc +92 -0
- data/ext/lpsolver-highs/highs/ipm/ipx/sparse_utils.h +58 -0
- data/ext/lpsolver-highs/highs/ipm/ipx/splitted_normal_matrix.cc +117 -0
- data/ext/lpsolver-highs/highs/ipm/ipx/splitted_normal_matrix.h +63 -0
- data/ext/lpsolver-highs/highs/ipm/ipx/starting_basis.cc +182 -0
- data/ext/lpsolver-highs/highs/ipm/ipx/starting_basis.h +39 -0
- data/ext/lpsolver-highs/highs/ipm/ipx/symbolic_invert.cc +183 -0
- data/ext/lpsolver-highs/highs/ipm/ipx/symbolic_invert.h +29 -0
- data/ext/lpsolver-highs/highs/ipm/ipx/timer.cc +16 -0
- data/ext/lpsolver-highs/highs/ipm/ipx/timer.h +25 -0
- data/ext/lpsolver-highs/highs/ipm/ipx/utils.cc +95 -0
- data/ext/lpsolver-highs/highs/ipm/ipx/utils.h +37 -0
- data/ext/lpsolver-highs/highs/lp_data/HConst.h +430 -0
- data/ext/lpsolver-highs/highs/lp_data/HStruct.h +213 -0
- data/ext/lpsolver-highs/highs/lp_data/Highs.cpp +4949 -0
- data/ext/lpsolver-highs/highs/lp_data/HighsAnalysis.h +23 -0
- data/ext/lpsolver-highs/highs/lp_data/HighsCallback.cpp +323 -0
- data/ext/lpsolver-highs/highs/lp_data/HighsCallback.h +104 -0
- data/ext/lpsolver-highs/highs/lp_data/HighsCallbackStruct.h +70 -0
- data/ext/lpsolver-highs/highs/lp_data/HighsDebug.cpp +54 -0
- data/ext/lpsolver-highs/highs/lp_data/HighsDebug.h +34 -0
- data/ext/lpsolver-highs/highs/lp_data/HighsDeprecated.cpp +181 -0
- data/ext/lpsolver-highs/highs/lp_data/HighsIis.cpp +1290 -0
- data/ext/lpsolver-highs/highs/lp_data/HighsIis.h +139 -0
- data/ext/lpsolver-highs/highs/lp_data/HighsInfo.cpp +426 -0
- data/ext/lpsolver-highs/highs/lp_data/HighsInfo.h +421 -0
- data/ext/lpsolver-highs/highs/lp_data/HighsInfoDebug.cpp +175 -0
- data/ext/lpsolver-highs/highs/lp_data/HighsInfoDebug.h +27 -0
- data/ext/lpsolver-highs/highs/lp_data/HighsInterface.cpp +4344 -0
- data/ext/lpsolver-highs/highs/lp_data/HighsLp.cpp +564 -0
- data/ext/lpsolver-highs/highs/lp_data/HighsLp.h +97 -0
- data/ext/lpsolver-highs/highs/lp_data/HighsLpSolverObject.h +47 -0
- data/ext/lpsolver-highs/highs/lp_data/HighsLpUtils.cpp +3794 -0
- data/ext/lpsolver-highs/highs/lp_data/HighsLpUtils.h +330 -0
- data/ext/lpsolver-highs/highs/lp_data/HighsModelUtils.cpp +1650 -0
- data/ext/lpsolver-highs/highs/lp_data/HighsModelUtils.h +129 -0
- data/ext/lpsolver-highs/highs/lp_data/HighsOptions.cpp +1176 -0
- data/ext/lpsolver-highs/highs/lp_data/HighsOptions.h +1715 -0
- data/ext/lpsolver-highs/highs/lp_data/HighsRanging.cpp +733 -0
- data/ext/lpsolver-highs/highs/lp_data/HighsRanging.h +43 -0
- data/ext/lpsolver-highs/highs/lp_data/HighsSolution.cpp +2194 -0
- data/ext/lpsolver-highs/highs/lp_data/HighsSolution.h +179 -0
- data/ext/lpsolver-highs/highs/lp_data/HighsSolutionDebug.cpp +490 -0
- data/ext/lpsolver-highs/highs/lp_data/HighsSolutionDebug.h +87 -0
- data/ext/lpsolver-highs/highs/lp_data/HighsSolve.cpp +747 -0
- data/ext/lpsolver-highs/highs/lp_data/HighsSolve.h +29 -0
- data/ext/lpsolver-highs/highs/lp_data/HighsStatus.cpp +48 -0
- data/ext/lpsolver-highs/highs/lp_data/HighsStatus.h +29 -0
- data/ext/lpsolver-highs/highs/lp_data/Iis.md +113 -0
- data/ext/lpsolver-highs/highs/meson.build +433 -0
- data/ext/lpsolver-highs/highs/mip/HighsCliqueTable.cpp +2236 -0
- data/ext/lpsolver-highs/highs/mip/HighsCliqueTable.h +329 -0
- data/ext/lpsolver-highs/highs/mip/HighsConflictPool.cpp +201 -0
- data/ext/lpsolver-highs/highs/mip/HighsConflictPool.h +109 -0
- data/ext/lpsolver-highs/highs/mip/HighsCutGeneration.cpp +1491 -0
- data/ext/lpsolver-highs/highs/mip/HighsCutGeneration.h +108 -0
- data/ext/lpsolver-highs/highs/mip/HighsCutPool.cpp +526 -0
- data/ext/lpsolver-highs/highs/mip/HighsCutPool.h +168 -0
- data/ext/lpsolver-highs/highs/mip/HighsDebugSol.cpp +313 -0
- data/ext/lpsolver-highs/highs/mip/HighsDebugSol.h +133 -0
- data/ext/lpsolver-highs/highs/mip/HighsDomain.cpp +3861 -0
- data/ext/lpsolver-highs/highs/mip/HighsDomain.h +657 -0
- data/ext/lpsolver-highs/highs/mip/HighsDomainChange.h +48 -0
- data/ext/lpsolver-highs/highs/mip/HighsDynamicRowMatrix.cpp +199 -0
- data/ext/lpsolver-highs/highs/mip/HighsDynamicRowMatrix.h +104 -0
- data/ext/lpsolver-highs/highs/mip/HighsFeasibilityJump.cpp +139 -0
- data/ext/lpsolver-highs/highs/mip/HighsGFkSolve.cpp +106 -0
- data/ext/lpsolver-highs/highs/mip/HighsGFkSolve.h +439 -0
- data/ext/lpsolver-highs/highs/mip/HighsImplications.cpp +915 -0
- data/ext/lpsolver-highs/highs/mip/HighsImplications.h +194 -0
- data/ext/lpsolver-highs/highs/mip/HighsLpAggregator.cpp +56 -0
- data/ext/lpsolver-highs/highs/mip/HighsLpAggregator.h +50 -0
- data/ext/lpsolver-highs/highs/mip/HighsLpRelaxation.cpp +1609 -0
- data/ext/lpsolver-highs/highs/mip/HighsLpRelaxation.h +361 -0
- data/ext/lpsolver-highs/highs/mip/HighsMipAnalysis.cpp +313 -0
- data/ext/lpsolver-highs/highs/mip/HighsMipAnalysis.h +71 -0
- data/ext/lpsolver-highs/highs/mip/HighsMipSolver.cpp +1002 -0
- data/ext/lpsolver-highs/highs/mip/HighsMipSolver.h +159 -0
- data/ext/lpsolver-highs/highs/mip/HighsMipSolverData.cpp +2936 -0
- data/ext/lpsolver-highs/highs/mip/HighsMipSolverData.h +313 -0
- data/ext/lpsolver-highs/highs/mip/HighsModkSeparator.cpp +267 -0
- data/ext/lpsolver-highs/highs/mip/HighsModkSeparator.h +60 -0
- data/ext/lpsolver-highs/highs/mip/HighsNodeQueue.cpp +443 -0
- data/ext/lpsolver-highs/highs/mip/HighsNodeQueue.h +312 -0
- data/ext/lpsolver-highs/highs/mip/HighsObjectiveFunction.cpp +124 -0
- data/ext/lpsolver-highs/highs/mip/HighsObjectiveFunction.h +71 -0
- data/ext/lpsolver-highs/highs/mip/HighsPathSeparator.cpp +549 -0
- data/ext/lpsolver-highs/highs/mip/HighsPathSeparator.h +39 -0
- data/ext/lpsolver-highs/highs/mip/HighsPrimalHeuristics.cpp +1673 -0
- data/ext/lpsolver-highs/highs/mip/HighsPrimalHeuristics.h +75 -0
- data/ext/lpsolver-highs/highs/mip/HighsPseudocost.cpp +129 -0
- data/ext/lpsolver-highs/highs/mip/HighsPseudocost.h +366 -0
- data/ext/lpsolver-highs/highs/mip/HighsRedcostFixing.cpp +316 -0
- data/ext/lpsolver-highs/highs/mip/HighsRedcostFixing.h +42 -0
- data/ext/lpsolver-highs/highs/mip/HighsSearch.cpp +1881 -0
- data/ext/lpsolver-highs/highs/mip/HighsSearch.h +241 -0
- data/ext/lpsolver-highs/highs/mip/HighsSeparation.cpp +186 -0
- data/ext/lpsolver-highs/highs/mip/HighsSeparation.h +41 -0
- data/ext/lpsolver-highs/highs/mip/HighsSeparator.cpp +39 -0
- data/ext/lpsolver-highs/highs/mip/HighsSeparator.h +60 -0
- data/ext/lpsolver-highs/highs/mip/HighsTableauSeparator.cpp +244 -0
- data/ext/lpsolver-highs/highs/mip/HighsTableauSeparator.h +34 -0
- data/ext/lpsolver-highs/highs/mip/HighsTransformedLp.cpp +563 -0
- data/ext/lpsolver-highs/highs/mip/HighsTransformedLp.h +63 -0
- data/ext/lpsolver-highs/highs/mip/MipTimer.h +544 -0
- data/ext/lpsolver-highs/highs/mip/feasibilityjump.hh +800 -0
- data/ext/lpsolver-highs/highs/model/HighsHessian.cpp +263 -0
- data/ext/lpsolver-highs/highs/model/HighsHessian.h +54 -0
- data/ext/lpsolver-highs/highs/model/HighsHessianUtils.cpp +584 -0
- data/ext/lpsolver-highs/highs/model/HighsHessianUtils.h +47 -0
- data/ext/lpsolver-highs/highs/model/HighsModel.cpp +46 -0
- data/ext/lpsolver-highs/highs/model/HighsModel.h +42 -0
- data/ext/lpsolver-highs/highs/parallel/HighsBinarySemaphore.h +108 -0
- data/ext/lpsolver-highs/highs/parallel/HighsCacheAlign.h +82 -0
- data/ext/lpsolver-highs/highs/parallel/HighsCombinable.h +116 -0
- data/ext/lpsolver-highs/highs/parallel/HighsMutex.h +124 -0
- data/ext/lpsolver-highs/highs/parallel/HighsParallel.h +128 -0
- data/ext/lpsolver-highs/highs/parallel/HighsRaceTimer.h +38 -0
- data/ext/lpsolver-highs/highs/parallel/HighsSchedulerConstants.h +19 -0
- data/ext/lpsolver-highs/highs/parallel/HighsSpinMutex.h +48 -0
- data/ext/lpsolver-highs/highs/parallel/HighsSplitDeque.h +606 -0
- data/ext/lpsolver-highs/highs/parallel/HighsTask.h +170 -0
- data/ext/lpsolver-highs/highs/parallel/HighsTaskExecutor.cpp +43 -0
- data/ext/lpsolver-highs/highs/parallel/HighsTaskExecutor.h +217 -0
- data/ext/lpsolver-highs/highs/pdlp/CupdlpWrapper.cpp +848 -0
- data/ext/lpsolver-highs/highs/pdlp/CupdlpWrapper.h +108 -0
- data/ext/lpsolver-highs/highs/pdlp/HiPdlpTimer.h +155 -0
- data/ext/lpsolver-highs/highs/pdlp/HiPdlpWrapper.cpp +141 -0
- data/ext/lpsolver-highs/highs/pdlp/HiPdlpWrapper.h +26 -0
- data/ext/lpsolver-highs/highs/pdlp/cupdlp/Diff +12 -0
- data/ext/lpsolver-highs/highs/pdlp/cupdlp/Meld +7 -0
- data/ext/lpsolver-highs/highs/pdlp/cupdlp/Merge +2 -0
- data/ext/lpsolver-highs/highs/pdlp/cupdlp/README.md +95 -0
- data/ext/lpsolver-highs/highs/pdlp/cupdlp/cuda/CMakeLists.txt +58 -0
- data/ext/lpsolver-highs/highs/pdlp/cupdlp/cuda/cupdlp_cuda_kernels.cu +338 -0
- data/ext/lpsolver-highs/highs/pdlp/cupdlp/cuda/cupdlp_cuda_kernels.cuh +319 -0
- data/ext/lpsolver-highs/highs/pdlp/cupdlp/cuda/cupdlp_cudalinalg.cu +386 -0
- data/ext/lpsolver-highs/highs/pdlp/cupdlp/cuda/cupdlp_cudalinalg.cuh +149 -0
- data/ext/lpsolver-highs/highs/pdlp/cupdlp/cuda/test_cublas.c +154 -0
- data/ext/lpsolver-highs/highs/pdlp/cupdlp/cuda/test_cuda_linalg.c +79 -0
- data/ext/lpsolver-highs/highs/pdlp/cupdlp/cupdlp.h +16 -0
- data/ext/lpsolver-highs/highs/pdlp/cupdlp/cupdlp_cs.c +214 -0
- data/ext/lpsolver-highs/highs/pdlp/cupdlp/cupdlp_cs.h +40 -0
- data/ext/lpsolver-highs/highs/pdlp/cupdlp/cupdlp_defs.h +447 -0
- data/ext/lpsolver-highs/highs/pdlp/cupdlp/cupdlp_linalg.c +802 -0
- data/ext/lpsolver-highs/highs/pdlp/cupdlp/cupdlp_linalg.h +189 -0
- data/ext/lpsolver-highs/highs/pdlp/cupdlp/cupdlp_proj.c +148 -0
- data/ext/lpsolver-highs/highs/pdlp/cupdlp/cupdlp_proj.h +19 -0
- data/ext/lpsolver-highs/highs/pdlp/cupdlp/cupdlp_restart.c +124 -0
- data/ext/lpsolver-highs/highs/pdlp/cupdlp/cupdlp_restart.h +31 -0
- data/ext/lpsolver-highs/highs/pdlp/cupdlp/cupdlp_scaling.c +425 -0
- data/ext/lpsolver-highs/highs/pdlp/cupdlp/cupdlp_scaling.h +26 -0
- data/ext/lpsolver-highs/highs/pdlp/cupdlp/cupdlp_solver.c +1498 -0
- data/ext/lpsolver-highs/highs/pdlp/cupdlp/cupdlp_solver.h +105 -0
- data/ext/lpsolver-highs/highs/pdlp/cupdlp/cupdlp_step.c +478 -0
- data/ext/lpsolver-highs/highs/pdlp/cupdlp/cupdlp_step.h +37 -0
- data/ext/lpsolver-highs/highs/pdlp/cupdlp/cupdlp_utils.c +1850 -0
- data/ext/lpsolver-highs/highs/pdlp/cupdlp/cupdlp_utils.h +212 -0
- data/ext/lpsolver-highs/highs/pdlp/cupdlp/glbopts.h +342 -0
- data/ext/lpsolver-highs/highs/pdlp/hipdlp/defs.hpp +222 -0
- data/ext/lpsolver-highs/highs/pdlp/hipdlp/linalg.cc +231 -0
- data/ext/lpsolver-highs/highs/pdlp/hipdlp/linalg.hpp +61 -0
- data/ext/lpsolver-highs/highs/pdlp/hipdlp/logger.cc +225 -0
- data/ext/lpsolver-highs/highs/pdlp/hipdlp/logger.hpp +80 -0
- data/ext/lpsolver-highs/highs/pdlp/hipdlp/pdhg.cc +2798 -0
- data/ext/lpsolver-highs/highs/pdlp/hipdlp/pdhg.cu +497 -0
- data/ext/lpsolver-highs/highs/pdlp/hipdlp/pdhg.hpp +358 -0
- data/ext/lpsolver-highs/highs/pdlp/hipdlp/pdhg_kernels.hpp +77 -0
- data/ext/lpsolver-highs/highs/pdlp/hipdlp/pdlp_gpu_debug.hpp +62 -0
- data/ext/lpsolver-highs/highs/pdlp/hipdlp/restart.cc +132 -0
- data/ext/lpsolver-highs/highs/pdlp/hipdlp/restart.hpp +96 -0
- data/ext/lpsolver-highs/highs/pdlp/hipdlp/scaling.cc +307 -0
- data/ext/lpsolver-highs/highs/pdlp/hipdlp/scaling.hpp +74 -0
- data/ext/lpsolver-highs/highs/pdlp/hipdlp/solver_results.hpp +65 -0
- data/ext/lpsolver-highs/highs/presolve/HPresolve.cpp +8511 -0
- data/ext/lpsolver-highs/highs/presolve/HPresolve.h +505 -0
- data/ext/lpsolver-highs/highs/presolve/HPresolveAnalysis.cpp +239 -0
- data/ext/lpsolver-highs/highs/presolve/HPresolveAnalysis.h +52 -0
- data/ext/lpsolver-highs/highs/presolve/HighsPostsolveStack.cpp +1368 -0
- data/ext/lpsolver-highs/highs/presolve/HighsPostsolveStack.h +943 -0
- data/ext/lpsolver-highs/highs/presolve/HighsSymmetry.cpp +1921 -0
- data/ext/lpsolver-highs/highs/presolve/HighsSymmetry.h +284 -0
- data/ext/lpsolver-highs/highs/presolve/ICrash.cpp +474 -0
- data/ext/lpsolver-highs/highs/presolve/ICrash.h +124 -0
- data/ext/lpsolver-highs/highs/presolve/ICrashUtil.cpp +267 -0
- data/ext/lpsolver-highs/highs/presolve/ICrashUtil.h +62 -0
- data/ext/lpsolver-highs/highs/presolve/ICrashX.cpp +173 -0
- data/ext/lpsolver-highs/highs/presolve/ICrashX.h +23 -0
- data/ext/lpsolver-highs/highs/presolve/PresolveComponent.cpp +45 -0
- data/ext/lpsolver-highs/highs/presolve/PresolveComponent.h +90 -0
- data/ext/lpsolver-highs/highs/qpsolver/README.md +185 -0
- data/ext/lpsolver-highs/highs/qpsolver/a_asm.cpp +139 -0
- data/ext/lpsolver-highs/highs/qpsolver/a_asm.hpp +77 -0
- data/ext/lpsolver-highs/highs/qpsolver/a_quass.cpp +194 -0
- data/ext/lpsolver-highs/highs/qpsolver/a_quass.hpp +22 -0
- data/ext/lpsolver-highs/highs/qpsolver/basis.cpp +443 -0
- data/ext/lpsolver-highs/highs/qpsolver/basis.hpp +159 -0
- data/ext/lpsolver-highs/highs/qpsolver/crashsolution.hpp +20 -0
- data/ext/lpsolver-highs/highs/qpsolver/dantzigpricing.hpp +80 -0
- data/ext/lpsolver-highs/highs/qpsolver/devexharrispricing.hpp +98 -0
- data/ext/lpsolver-highs/highs/qpsolver/devexpricing.hpp +108 -0
- data/ext/lpsolver-highs/highs/qpsolver/eventhandler.hpp +30 -0
- data/ext/lpsolver-highs/highs/qpsolver/factor.hpp +408 -0
- data/ext/lpsolver-highs/highs/qpsolver/feasibility_bounded.hpp +114 -0
- data/ext/lpsolver-highs/highs/qpsolver/feasibility_highs.hpp +301 -0
- data/ext/lpsolver-highs/highs/qpsolver/gradient.hpp +46 -0
- data/ext/lpsolver-highs/highs/qpsolver/instance.hpp +70 -0
- data/ext/lpsolver-highs/highs/qpsolver/matrix.hpp +342 -0
- data/ext/lpsolver-highs/highs/qpsolver/perturbation.cpp +41 -0
- data/ext/lpsolver-highs/highs/qpsolver/perturbation.hpp +15 -0
- data/ext/lpsolver-highs/highs/qpsolver/pricing.hpp +22 -0
- data/ext/lpsolver-highs/highs/qpsolver/qpconst.hpp +34 -0
- data/ext/lpsolver-highs/highs/qpsolver/qpvector.hpp +242 -0
- data/ext/lpsolver-highs/highs/qpsolver/quass.cpp +551 -0
- data/ext/lpsolver-highs/highs/qpsolver/quass.hpp +27 -0
- data/ext/lpsolver-highs/highs/qpsolver/ratiotest.cpp +146 -0
- data/ext/lpsolver-highs/highs/qpsolver/ratiotest.hpp +26 -0
- data/ext/lpsolver-highs/highs/qpsolver/reducedcosts.hpp +46 -0
- data/ext/lpsolver-highs/highs/qpsolver/reducedgradient.hpp +95 -0
- data/ext/lpsolver-highs/highs/qpsolver/runtime.hpp +45 -0
- data/ext/lpsolver-highs/highs/qpsolver/scaling.cpp +123 -0
- data/ext/lpsolver-highs/highs/qpsolver/scaling.hpp +15 -0
- data/ext/lpsolver-highs/highs/qpsolver/settings.hpp +84 -0
- data/ext/lpsolver-highs/highs/qpsolver/snippets.hpp +36 -0
- data/ext/lpsolver-highs/highs/qpsolver/statistics.hpp +30 -0
- data/ext/lpsolver-highs/highs/qpsolver/steepestedgepricing.hpp +173 -0
- data/ext/lpsolver-highs/highs/simplex/HApp.h +550 -0
- data/ext/lpsolver-highs/highs/simplex/HEkk.cpp +4404 -0
- data/ext/lpsolver-highs/highs/simplex/HEkk.h +419 -0
- data/ext/lpsolver-highs/highs/simplex/HEkkControl.cpp +146 -0
- data/ext/lpsolver-highs/highs/simplex/HEkkDebug.cpp +1722 -0
- data/ext/lpsolver-highs/highs/simplex/HEkkDual.cpp +3003 -0
- data/ext/lpsolver-highs/highs/simplex/HEkkDual.h +513 -0
- data/ext/lpsolver-highs/highs/simplex/HEkkDualMulti.cpp +1020 -0
- data/ext/lpsolver-highs/highs/simplex/HEkkDualRHS.cpp +535 -0
- data/ext/lpsolver-highs/highs/simplex/HEkkDualRHS.h +134 -0
- data/ext/lpsolver-highs/highs/simplex/HEkkDualRow.cpp +697 -0
- data/ext/lpsolver-highs/highs/simplex/HEkkDualRow.h +201 -0
- data/ext/lpsolver-highs/highs/simplex/HEkkInterface.cpp +26 -0
- data/ext/lpsolver-highs/highs/simplex/HEkkPrimal.cpp +2984 -0
- data/ext/lpsolver-highs/highs/simplex/HEkkPrimal.h +191 -0
- data/ext/lpsolver-highs/highs/simplex/HSimplex.cpp +330 -0
- data/ext/lpsolver-highs/highs/simplex/HSimplex.h +42 -0
- data/ext/lpsolver-highs/highs/simplex/HSimplexDebug.cpp +145 -0
- data/ext/lpsolver-highs/highs/simplex/HSimplexDebug.h +48 -0
- data/ext/lpsolver-highs/highs/simplex/HSimplexNla.cpp +517 -0
- data/ext/lpsolver-highs/highs/simplex/HSimplexNla.h +158 -0
- data/ext/lpsolver-highs/highs/simplex/HSimplexNlaDebug.cpp +373 -0
- data/ext/lpsolver-highs/highs/simplex/HSimplexNlaFreeze.cpp +28 -0
- data/ext/lpsolver-highs/highs/simplex/HSimplexNlaProductForm.cpp +113 -0
- data/ext/lpsolver-highs/highs/simplex/HSimplexReport.cpp +77 -0
- data/ext/lpsolver-highs/highs/simplex/HSimplexReport.h +21 -0
- data/ext/lpsolver-highs/highs/simplex/HighsSimplexAnalysis.cpp +1495 -0
- data/ext/lpsolver-highs/highs/simplex/HighsSimplexAnalysis.h +500 -0
- data/ext/lpsolver-highs/highs/simplex/SimplexConst.h +273 -0
- data/ext/lpsolver-highs/highs/simplex/SimplexStruct.h +263 -0
- data/ext/lpsolver-highs/highs/simplex/SimplexTimer.h +414 -0
- data/ext/lpsolver-highs/highs/test_kkt/DevKkt.cpp +469 -0
- data/ext/lpsolver-highs/highs/test_kkt/DevKkt.h +143 -0
- data/ext/lpsolver-highs/highs/test_kkt/KktCh2.cpp +305 -0
- data/ext/lpsolver-highs/highs/test_kkt/KktCh2.h +79 -0
- data/ext/lpsolver-highs/highs/util/FactorTimer.h +199 -0
- data/ext/lpsolver-highs/highs/util/HFactor.cpp +2597 -0
- data/ext/lpsolver-highs/highs/util/HFactor.h +587 -0
- data/ext/lpsolver-highs/highs/util/HFactorConst.h +81 -0
- data/ext/lpsolver-highs/highs/util/HFactorDebug.cpp +231 -0
- data/ext/lpsolver-highs/highs/util/HFactorDebug.h +55 -0
- data/ext/lpsolver-highs/highs/util/HFactorExtend.cpp +229 -0
- data/ext/lpsolver-highs/highs/util/HFactorRefactor.cpp +304 -0
- data/ext/lpsolver-highs/highs/util/HFactorUtils.cpp +122 -0
- data/ext/lpsolver-highs/highs/util/HSet.cpp +197 -0
- data/ext/lpsolver-highs/highs/util/HSet.h +89 -0
- data/ext/lpsolver-highs/highs/util/HVector.h +22 -0
- data/ext/lpsolver-highs/highs/util/HVectorBase.cpp +271 -0
- data/ext/lpsolver-highs/highs/util/HVectorBase.h +102 -0
- data/ext/lpsolver-highs/highs/util/HighsCDouble.h +323 -0
- data/ext/lpsolver-highs/highs/util/HighsComponent.h +53 -0
- data/ext/lpsolver-highs/highs/util/HighsDataStack.h +83 -0
- data/ext/lpsolver-highs/highs/util/HighsDisjointSets.h +107 -0
- data/ext/lpsolver-highs/highs/util/HighsHash.cpp +10 -0
- data/ext/lpsolver-highs/highs/util/HighsHash.h +1274 -0
- data/ext/lpsolver-highs/highs/util/HighsHashTree.h +1461 -0
- data/ext/lpsolver-highs/highs/util/HighsInt.h +36 -0
- data/ext/lpsolver-highs/highs/util/HighsIntegers.h +212 -0
- data/ext/lpsolver-highs/highs/util/HighsLinearSumBounds.cpp +267 -0
- data/ext/lpsolver-highs/highs/util/HighsLinearSumBounds.h +203 -0
- data/ext/lpsolver-highs/highs/util/HighsMatrixPic.cpp +146 -0
- data/ext/lpsolver-highs/highs/util/HighsMatrixPic.h +37 -0
- data/ext/lpsolver-highs/highs/util/HighsMatrixSlice.h +561 -0
- data/ext/lpsolver-highs/highs/util/HighsMatrixUtils.cpp +407 -0
- data/ext/lpsolver-highs/highs/util/HighsMatrixUtils.h +57 -0
- data/ext/lpsolver-highs/highs/util/HighsMemoryAllocation.h +63 -0
- data/ext/lpsolver-highs/highs/util/HighsRandom.h +242 -0
- data/ext/lpsolver-highs/highs/util/HighsRbTree.h +452 -0
- data/ext/lpsolver-highs/highs/util/HighsSort.cpp +364 -0
- data/ext/lpsolver-highs/highs/util/HighsSort.h +131 -0
- data/ext/lpsolver-highs/highs/util/HighsSparseMatrix.cpp +1746 -0
- data/ext/lpsolver-highs/highs/util/HighsSparseMatrix.h +151 -0
- data/ext/lpsolver-highs/highs/util/HighsSparseVectorSum.h +95 -0
- data/ext/lpsolver-highs/highs/util/HighsSplay.h +135 -0
- data/ext/lpsolver-highs/highs/util/HighsTimer.h +385 -0
- data/ext/lpsolver-highs/highs/util/HighsUtils.cpp +1259 -0
- data/ext/lpsolver-highs/highs/util/HighsUtils.h +272 -0
- data/ext/lpsolver-highs/highs/util/stringutil.cpp +131 -0
- data/ext/lpsolver-highs/highs/util/stringutil.h +46 -0
- data/ext/lpsolver-highs/highs.pc.in +12 -0
- data/ext/lpsolver-highs/meson.build +198 -0
- data/ext/lpsolver-highs/meson_options.txt +31 -0
- data/ext/lpsolver-highs/nuget/HiGHS_Logo.png +0 -0
- data/ext/lpsolver-highs/nuget/Highs.csproj +25 -0
- data/ext/lpsolver-highs/nuget/Highs.csproj.in +36 -0
- data/ext/lpsolver-highs/nuget/HowToAlternative.md +77 -0
- data/ext/lpsolver-highs/nuget/README.md +38 -0
- data/ext/lpsolver-highs/nuget/arm-toolchain.cmake +15 -0
- data/ext/lpsolver-highs/nuget/build_linux-arm.sh +13 -0
- data/ext/lpsolver-highs/nuget/build_linux.sh +10 -0
- data/ext/lpsolver-highs/nuget/build_windows.ps1 +27 -0
- data/ext/lpsolver-highs/nuget/generatePackage.ps1 +28 -0
- data/ext/lpsolver-highs/pyproject.toml +221 -0
- data/ext/lpsolver-highs/subprojects/pybind11.wrap +13 -0
- data/ext/lpsolver-highs/tests/test_highspy.py +2310 -0
- data/ext/lpsolver-highs/version.rc.in +50 -0
- data/lib/lpsolver/highs +0 -0
- data/lib/lpsolver/model.rb +35 -7
- data/lib/lpsolver/native.so +0 -0
- data/lib/lpsolver/native_model.rb +261 -0
- data/lib/lpsolver/solution.rb +93 -8
- data/lib/lpsolver/version.rb +1 -1
- data/lpsolver.gemspec +4 -1
- metadata +1176 -4
|
@@ -0,0 +1,1983 @@
|
|
|
1
|
+
NAME sp150x300d
|
|
2
|
+
ROWS
|
|
3
|
+
N OBJ.....
|
|
4
|
+
E CNS..001
|
|
5
|
+
E CNS..002
|
|
6
|
+
E CNS..003
|
|
7
|
+
E CNS..004
|
|
8
|
+
E CNS..005
|
|
9
|
+
E CNS..006
|
|
10
|
+
E CNS..007
|
|
11
|
+
E CNS..008
|
|
12
|
+
E CNS..009
|
|
13
|
+
E CNS..010
|
|
14
|
+
E CNS..011
|
|
15
|
+
E CNS..012
|
|
16
|
+
E CNS..013
|
|
17
|
+
E CNS..014
|
|
18
|
+
E CNS..015
|
|
19
|
+
E CNS..016
|
|
20
|
+
E CNS..017
|
|
21
|
+
E CNS..018
|
|
22
|
+
E CNS..019
|
|
23
|
+
E CNS..020
|
|
24
|
+
E CNS..021
|
|
25
|
+
E CNS..022
|
|
26
|
+
E CNS..023
|
|
27
|
+
E CNS..024
|
|
28
|
+
E CNS..025
|
|
29
|
+
E CNS..026
|
|
30
|
+
E CNS..027
|
|
31
|
+
E CNS..028
|
|
32
|
+
E CNS..029
|
|
33
|
+
E CNS..030
|
|
34
|
+
E CNS..031
|
|
35
|
+
E CNS..032
|
|
36
|
+
E CNS..033
|
|
37
|
+
E CNS..034
|
|
38
|
+
E CNS..035
|
|
39
|
+
E CNS..036
|
|
40
|
+
E CNS..037
|
|
41
|
+
E CNS..038
|
|
42
|
+
E CNS..039
|
|
43
|
+
E CNS..040
|
|
44
|
+
E CNS..041
|
|
45
|
+
E CNS..042
|
|
46
|
+
E CNS..043
|
|
47
|
+
E CNS..044
|
|
48
|
+
E CNS..045
|
|
49
|
+
E CNS..046
|
|
50
|
+
E CNS..047
|
|
51
|
+
E CNS..048
|
|
52
|
+
E CNS..049
|
|
53
|
+
E CNS..050
|
|
54
|
+
E CNS..051
|
|
55
|
+
E CNS..052
|
|
56
|
+
E CNS..053
|
|
57
|
+
E CNS..054
|
|
58
|
+
E CNS..055
|
|
59
|
+
E CNS..056
|
|
60
|
+
E CNS..057
|
|
61
|
+
E CNS..058
|
|
62
|
+
E CNS..059
|
|
63
|
+
E CNS..060
|
|
64
|
+
E CNS..061
|
|
65
|
+
E CNS..062
|
|
66
|
+
E CNS..063
|
|
67
|
+
E CNS..064
|
|
68
|
+
E CNS..065
|
|
69
|
+
E CNS..066
|
|
70
|
+
E CNS..067
|
|
71
|
+
E CNS..068
|
|
72
|
+
E CNS..069
|
|
73
|
+
E CNS..070
|
|
74
|
+
E CNS..071
|
|
75
|
+
E CNS..072
|
|
76
|
+
E CNS..073
|
|
77
|
+
E CNS..074
|
|
78
|
+
E CNS..075
|
|
79
|
+
E CNS..076
|
|
80
|
+
E CNS..077
|
|
81
|
+
E CNS..078
|
|
82
|
+
E CNS..079
|
|
83
|
+
E CNS..080
|
|
84
|
+
E CNS..081
|
|
85
|
+
E CNS..082
|
|
86
|
+
E CNS..083
|
|
87
|
+
E CNS..084
|
|
88
|
+
E CNS..085
|
|
89
|
+
E CNS..086
|
|
90
|
+
E CNS..087
|
|
91
|
+
E CNS..088
|
|
92
|
+
E CNS..089
|
|
93
|
+
E CNS..090
|
|
94
|
+
E CNS..091
|
|
95
|
+
E CNS..092
|
|
96
|
+
E CNS..093
|
|
97
|
+
E CNS..094
|
|
98
|
+
E CNS..095
|
|
99
|
+
E CNS..096
|
|
100
|
+
E CNS..097
|
|
101
|
+
E CNS..098
|
|
102
|
+
E CNS..099
|
|
103
|
+
E CNS..100
|
|
104
|
+
E CNS..101
|
|
105
|
+
E CNS..102
|
|
106
|
+
E CNS..103
|
|
107
|
+
E CNS..104
|
|
108
|
+
E CNS..105
|
|
109
|
+
E CNS..106
|
|
110
|
+
E CNS..107
|
|
111
|
+
E CNS..108
|
|
112
|
+
E CNS..109
|
|
113
|
+
E CNS..110
|
|
114
|
+
E CNS..111
|
|
115
|
+
E CNS..112
|
|
116
|
+
E CNS..113
|
|
117
|
+
E CNS..114
|
|
118
|
+
E CNS..115
|
|
119
|
+
E CNS..116
|
|
120
|
+
E CNS..117
|
|
121
|
+
E CNS..118
|
|
122
|
+
E CNS..119
|
|
123
|
+
E CNS..120
|
|
124
|
+
E CNS..121
|
|
125
|
+
E CNS..122
|
|
126
|
+
E CNS..123
|
|
127
|
+
E CNS..124
|
|
128
|
+
E CNS..125
|
|
129
|
+
E CNS..126
|
|
130
|
+
E CNS..127
|
|
131
|
+
E CNS..128
|
|
132
|
+
E CNS..129
|
|
133
|
+
E CNS..130
|
|
134
|
+
E CNS..131
|
|
135
|
+
E CNS..132
|
|
136
|
+
E CNS..133
|
|
137
|
+
E CNS..134
|
|
138
|
+
E CNS..135
|
|
139
|
+
E CNS..136
|
|
140
|
+
E CNS..137
|
|
141
|
+
E CNS..138
|
|
142
|
+
E CNS..139
|
|
143
|
+
E CNS..140
|
|
144
|
+
E CNS..141
|
|
145
|
+
E CNS..142
|
|
146
|
+
E CNS..143
|
|
147
|
+
E CNS..144
|
|
148
|
+
E CNS..145
|
|
149
|
+
E CNS..146
|
|
150
|
+
E CNS..147
|
|
151
|
+
E CNS..148
|
|
152
|
+
E CNS..149
|
|
153
|
+
E CNS..150
|
|
154
|
+
L UC...001
|
|
155
|
+
L UC...002
|
|
156
|
+
L UC...003
|
|
157
|
+
L UC...004
|
|
158
|
+
L UC...005
|
|
159
|
+
L UC...006
|
|
160
|
+
L UC...007
|
|
161
|
+
L UC...008
|
|
162
|
+
L UC...009
|
|
163
|
+
L UC...010
|
|
164
|
+
L UC...011
|
|
165
|
+
L UC...012
|
|
166
|
+
L UC...013
|
|
167
|
+
L UC...014
|
|
168
|
+
L UC...015
|
|
169
|
+
L UC...016
|
|
170
|
+
L UC...017
|
|
171
|
+
L UC...018
|
|
172
|
+
L UC...019
|
|
173
|
+
L UC...020
|
|
174
|
+
L UC...021
|
|
175
|
+
L UC...022
|
|
176
|
+
L UC...023
|
|
177
|
+
L UC...024
|
|
178
|
+
L UC...025
|
|
179
|
+
L UC...026
|
|
180
|
+
L UC...027
|
|
181
|
+
L UC...028
|
|
182
|
+
L UC...029
|
|
183
|
+
L UC...030
|
|
184
|
+
L UC...031
|
|
185
|
+
L UC...032
|
|
186
|
+
L UC...033
|
|
187
|
+
L UC...034
|
|
188
|
+
L UC...035
|
|
189
|
+
L UC...036
|
|
190
|
+
L UC...037
|
|
191
|
+
L UC...038
|
|
192
|
+
L UC...039
|
|
193
|
+
L UC...040
|
|
194
|
+
L UC...041
|
|
195
|
+
L UC...042
|
|
196
|
+
L UC...043
|
|
197
|
+
L UC...044
|
|
198
|
+
L UC...045
|
|
199
|
+
L UC...046
|
|
200
|
+
L UC...047
|
|
201
|
+
L UC...048
|
|
202
|
+
L UC...049
|
|
203
|
+
L UC...050
|
|
204
|
+
L UC...051
|
|
205
|
+
L UC...052
|
|
206
|
+
L UC...053
|
|
207
|
+
L UC...054
|
|
208
|
+
L UC...055
|
|
209
|
+
L UC...056
|
|
210
|
+
L UC...057
|
|
211
|
+
L UC...058
|
|
212
|
+
L UC...059
|
|
213
|
+
L UC...060
|
|
214
|
+
L UC...061
|
|
215
|
+
L UC...062
|
|
216
|
+
L UC...063
|
|
217
|
+
L UC...064
|
|
218
|
+
L UC...065
|
|
219
|
+
L UC...066
|
|
220
|
+
L UC...067
|
|
221
|
+
L UC...068
|
|
222
|
+
L UC...069
|
|
223
|
+
L UC...070
|
|
224
|
+
L UC...071
|
|
225
|
+
L UC...072
|
|
226
|
+
L UC...073
|
|
227
|
+
L UC...074
|
|
228
|
+
L UC...075
|
|
229
|
+
L UC...076
|
|
230
|
+
L UC...077
|
|
231
|
+
L UC...078
|
|
232
|
+
L UC...079
|
|
233
|
+
L UC...080
|
|
234
|
+
L UC...081
|
|
235
|
+
L UC...082
|
|
236
|
+
L UC...083
|
|
237
|
+
L UC...084
|
|
238
|
+
L UC...085
|
|
239
|
+
L UC...086
|
|
240
|
+
L UC...087
|
|
241
|
+
L UC...088
|
|
242
|
+
L UC...089
|
|
243
|
+
L UC...090
|
|
244
|
+
L UC...091
|
|
245
|
+
L UC...092
|
|
246
|
+
L UC...093
|
|
247
|
+
L UC...094
|
|
248
|
+
L UC...095
|
|
249
|
+
L UC...096
|
|
250
|
+
L UC...097
|
|
251
|
+
L UC...098
|
|
252
|
+
L UC...099
|
|
253
|
+
L UC...100
|
|
254
|
+
L UC...101
|
|
255
|
+
L UC...102
|
|
256
|
+
L UC...103
|
|
257
|
+
L UC...104
|
|
258
|
+
L UC...105
|
|
259
|
+
L UC...106
|
|
260
|
+
L UC...107
|
|
261
|
+
L UC...108
|
|
262
|
+
L UC...109
|
|
263
|
+
L UC...110
|
|
264
|
+
L UC...111
|
|
265
|
+
L UC...112
|
|
266
|
+
L UC...113
|
|
267
|
+
L UC...114
|
|
268
|
+
L UC...115
|
|
269
|
+
L UC...116
|
|
270
|
+
L UC...117
|
|
271
|
+
L UC...118
|
|
272
|
+
L UC...119
|
|
273
|
+
L UC...120
|
|
274
|
+
L UC...121
|
|
275
|
+
L UC...122
|
|
276
|
+
L UC...123
|
|
277
|
+
L UC...124
|
|
278
|
+
L UC...125
|
|
279
|
+
L UC...126
|
|
280
|
+
L UC...127
|
|
281
|
+
L UC...128
|
|
282
|
+
L UC...129
|
|
283
|
+
L UC...130
|
|
284
|
+
L UC...131
|
|
285
|
+
L UC...132
|
|
286
|
+
L UC...133
|
|
287
|
+
L UC...134
|
|
288
|
+
L UC...135
|
|
289
|
+
L UC...136
|
|
290
|
+
L UC...137
|
|
291
|
+
L UC...138
|
|
292
|
+
L UC...139
|
|
293
|
+
L UC...140
|
|
294
|
+
L UC...141
|
|
295
|
+
L UC...142
|
|
296
|
+
L UC...143
|
|
297
|
+
L UC...144
|
|
298
|
+
L UC...145
|
|
299
|
+
L UC...146
|
|
300
|
+
L UC...147
|
|
301
|
+
L UC...148
|
|
302
|
+
L UC...149
|
|
303
|
+
L UC...150
|
|
304
|
+
L UC...151
|
|
305
|
+
L UC...152
|
|
306
|
+
L UC...153
|
|
307
|
+
L UC...154
|
|
308
|
+
L UC...155
|
|
309
|
+
L UC...156
|
|
310
|
+
L UC...157
|
|
311
|
+
L UC...158
|
|
312
|
+
L UC...159
|
|
313
|
+
L UC...160
|
|
314
|
+
L UC...161
|
|
315
|
+
L UC...162
|
|
316
|
+
L UC...163
|
|
317
|
+
L UC...164
|
|
318
|
+
L UC...165
|
|
319
|
+
L UC...166
|
|
320
|
+
L UC...167
|
|
321
|
+
L UC...168
|
|
322
|
+
L UC...169
|
|
323
|
+
L UC...170
|
|
324
|
+
L UC...171
|
|
325
|
+
L UC...172
|
|
326
|
+
L UC...173
|
|
327
|
+
L UC...174
|
|
328
|
+
L UC...175
|
|
329
|
+
L UC...176
|
|
330
|
+
L UC...177
|
|
331
|
+
L UC...178
|
|
332
|
+
L UC...179
|
|
333
|
+
L UC...180
|
|
334
|
+
L UC...181
|
|
335
|
+
L UC...182
|
|
336
|
+
L UC...183
|
|
337
|
+
L UC...184
|
|
338
|
+
L UC...185
|
|
339
|
+
L UC...186
|
|
340
|
+
L UC...187
|
|
341
|
+
L UC...188
|
|
342
|
+
L UC...189
|
|
343
|
+
L UC...190
|
|
344
|
+
L UC...191
|
|
345
|
+
L UC...192
|
|
346
|
+
L UC...193
|
|
347
|
+
L UC...194
|
|
348
|
+
L UC...195
|
|
349
|
+
L UC...196
|
|
350
|
+
L UC...197
|
|
351
|
+
L UC...198
|
|
352
|
+
L UC...199
|
|
353
|
+
L UC...200
|
|
354
|
+
L UC...201
|
|
355
|
+
L UC...202
|
|
356
|
+
L UC...203
|
|
357
|
+
L UC...204
|
|
358
|
+
L UC...205
|
|
359
|
+
L UC...206
|
|
360
|
+
L UC...207
|
|
361
|
+
L UC...208
|
|
362
|
+
L UC...209
|
|
363
|
+
L UC...210
|
|
364
|
+
L UC...211
|
|
365
|
+
L UC...212
|
|
366
|
+
L UC...213
|
|
367
|
+
L UC...214
|
|
368
|
+
L UC...215
|
|
369
|
+
L UC...216
|
|
370
|
+
L UC...217
|
|
371
|
+
L UC...218
|
|
372
|
+
L UC...219
|
|
373
|
+
L UC...220
|
|
374
|
+
L UC...221
|
|
375
|
+
L UC...222
|
|
376
|
+
L UC...223
|
|
377
|
+
L UC...224
|
|
378
|
+
L UC...225
|
|
379
|
+
L UC...226
|
|
380
|
+
L UC...227
|
|
381
|
+
L UC...228
|
|
382
|
+
L UC...229
|
|
383
|
+
L UC...230
|
|
384
|
+
L UC...231
|
|
385
|
+
L UC...232
|
|
386
|
+
L UC...233
|
|
387
|
+
L UC...234
|
|
388
|
+
L UC...235
|
|
389
|
+
L UC...236
|
|
390
|
+
L UC...237
|
|
391
|
+
L UC...238
|
|
392
|
+
L UC...239
|
|
393
|
+
L UC...240
|
|
394
|
+
L UC...241
|
|
395
|
+
L UC...242
|
|
396
|
+
L UC...243
|
|
397
|
+
L UC...244
|
|
398
|
+
L UC...245
|
|
399
|
+
L UC...246
|
|
400
|
+
L UC...247
|
|
401
|
+
L UC...248
|
|
402
|
+
L UC...249
|
|
403
|
+
L UC...250
|
|
404
|
+
L UC...251
|
|
405
|
+
L UC...252
|
|
406
|
+
L UC...253
|
|
407
|
+
L UC...254
|
|
408
|
+
L UC...255
|
|
409
|
+
L UC...256
|
|
410
|
+
L UC...257
|
|
411
|
+
L UC...258
|
|
412
|
+
L UC...259
|
|
413
|
+
L UC...260
|
|
414
|
+
L UC...261
|
|
415
|
+
L UC...262
|
|
416
|
+
L UC...263
|
|
417
|
+
L UC...264
|
|
418
|
+
L UC...265
|
|
419
|
+
L UC...266
|
|
420
|
+
L UC...267
|
|
421
|
+
L UC...268
|
|
422
|
+
L UC...269
|
|
423
|
+
L UC...270
|
|
424
|
+
L UC...271
|
|
425
|
+
L UC...272
|
|
426
|
+
L UC...273
|
|
427
|
+
L UC...274
|
|
428
|
+
L UC...275
|
|
429
|
+
L UC...276
|
|
430
|
+
L UC...277
|
|
431
|
+
L UC...278
|
|
432
|
+
L UC...279
|
|
433
|
+
L UC...280
|
|
434
|
+
L UC...281
|
|
435
|
+
L UC...282
|
|
436
|
+
L UC...283
|
|
437
|
+
L UC...284
|
|
438
|
+
L UC...285
|
|
439
|
+
L UC...286
|
|
440
|
+
L UC...287
|
|
441
|
+
L UC...288
|
|
442
|
+
L UC...289
|
|
443
|
+
L UC...290
|
|
444
|
+
L UC...291
|
|
445
|
+
L UC...292
|
|
446
|
+
L UC...293
|
|
447
|
+
L UC...294
|
|
448
|
+
L UC...295
|
|
449
|
+
L UC...296
|
|
450
|
+
L UC...297
|
|
451
|
+
L UC...298
|
|
452
|
+
L UC...299
|
|
453
|
+
L UC...300
|
|
454
|
+
COLUMNS
|
|
455
|
+
x....001 CNS..002 -1.000000 CNS..006 1.000000
|
|
456
|
+
x....001 UC...001 1.000000
|
|
457
|
+
x....002 CNS..005 1.000000 CNS..006 -1.000000
|
|
458
|
+
x....002 UC...002 1.000000
|
|
459
|
+
x....003 CNS..006 -1.000000 CNS..007 1.000000
|
|
460
|
+
x....003 UC...003 1.000000
|
|
461
|
+
x....004 CNS..005 1.000000 CNS..007 -1.000000
|
|
462
|
+
x....004 UC...004 1.000000
|
|
463
|
+
x....005 CNS..002 -1.000000 CNS..008 1.000000
|
|
464
|
+
x....005 UC...005 1.000000
|
|
465
|
+
x....006 CNS..005 1.000000 CNS..008 -1.000000
|
|
466
|
+
x....006 UC...006 1.000000
|
|
467
|
+
x....007 CNS..002 -1.000000 CNS..005 1.000000
|
|
468
|
+
x....007 UC...007 1.000000
|
|
469
|
+
x....008 CNS..002 -1.000000 CNS..009 1.000000
|
|
470
|
+
x....008 UC...008 1.000000
|
|
471
|
+
x....009 CNS..005 1.000000 CNS..009 -1.000000
|
|
472
|
+
x....009 UC...009 1.000000
|
|
473
|
+
x....010 CNS..005 -1.000000 CNS..012 1.000000
|
|
474
|
+
x....010 UC...010 1.000000
|
|
475
|
+
x....011 CNS..011 1.000000 CNS..012 -1.000000
|
|
476
|
+
x....011 UC...011 1.000000
|
|
477
|
+
x....012 CNS..005 -1.000000 CNS..011 1.000000
|
|
478
|
+
x....012 UC...012 1.000000
|
|
479
|
+
x....013 CNS..010 1.000000 CNS..011 -1.000000
|
|
480
|
+
x....013 UC...013 1.000000
|
|
481
|
+
x....014 CNS..010 1.000000 CNS..011 -1.000000
|
|
482
|
+
x....014 UC...014 1.000000
|
|
483
|
+
x....015 CNS..010 1.000000 CNS..011 -1.000000
|
|
484
|
+
x....015 UC...015 1.000000
|
|
485
|
+
x....016 CNS..010 -1.000000 CNS..013 1.000000
|
|
486
|
+
x....016 UC...016 1.000000
|
|
487
|
+
x....017 CNS..004 1.000000 CNS..013 -1.000000
|
|
488
|
+
x....017 UC...017 1.000000
|
|
489
|
+
x....018 CNS..004 1.000000 CNS..010 -1.000000
|
|
490
|
+
x....018 UC...018 1.000000
|
|
491
|
+
x....019 CNS..004 1.000000 CNS..010 -1.000000
|
|
492
|
+
x....019 UC...019 1.000000
|
|
493
|
+
x....020 CNS..004 -1.000000 CNS..015 1.000000
|
|
494
|
+
x....020 UC...020 1.000000
|
|
495
|
+
x....021 CNS..014 1.000000 CNS..015 -1.000000
|
|
496
|
+
x....021 UC...021 1.000000
|
|
497
|
+
x....022 CNS..004 -1.000000 CNS..014 1.000000
|
|
498
|
+
x....022 UC...022 1.000000
|
|
499
|
+
x....023 CNS..004 -1.000000 CNS..016 1.000000
|
|
500
|
+
x....023 UC...023 1.000000
|
|
501
|
+
x....024 CNS..014 1.000000 CNS..016 -1.000000
|
|
502
|
+
x....024 UC...024 1.000000
|
|
503
|
+
x....025 CNS..003 1.000000 CNS..014 -1.000000
|
|
504
|
+
x....025 UC...025 1.000000
|
|
505
|
+
x....026 CNS..003 1.000000 CNS..014 -1.000000
|
|
506
|
+
x....026 UC...026 1.000000
|
|
507
|
+
x....027 CNS..014 -1.000000 CNS..017 1.000000
|
|
508
|
+
x....027 UC...027 1.000000
|
|
509
|
+
x....028 CNS..003 1.000000 CNS..017 -1.000000
|
|
510
|
+
x....028 UC...028 1.000000
|
|
511
|
+
x....029 CNS..004 -1.000000 CNS..019 1.000000
|
|
512
|
+
x....029 UC...029 1.000000
|
|
513
|
+
x....030 CNS..018 1.000000 CNS..019 -1.000000
|
|
514
|
+
x....030 UC...030 1.000000
|
|
515
|
+
x....031 CNS..003 1.000000 CNS..018 -1.000000
|
|
516
|
+
x....031 UC...031 1.000000
|
|
517
|
+
x....032 CNS..018 -1.000000 CNS..020 1.000000
|
|
518
|
+
x....032 UC...032 1.000000
|
|
519
|
+
x....033 CNS..003 1.000000 CNS..020 -1.000000
|
|
520
|
+
x....033 UC...033 1.000000
|
|
521
|
+
x....034 CNS..004 -1.000000 CNS..021 1.000000
|
|
522
|
+
x....034 UC...034 1.000000
|
|
523
|
+
x....035 CNS..003 1.000000 CNS..021 -1.000000
|
|
524
|
+
x....035 UC...035 1.000000
|
|
525
|
+
x....036 CNS..003 1.000000 CNS..004 -1.000000
|
|
526
|
+
x....036 UC...036 1.000000
|
|
527
|
+
x....037 CNS..004 -1.000000 CNS..022 1.000000
|
|
528
|
+
x....037 UC...037 1.000000
|
|
529
|
+
x....038 CNS..003 1.000000 CNS..022 -1.000000
|
|
530
|
+
x....038 UC...038 1.000000
|
|
531
|
+
x....039 CNS..002 -1.000000 CNS..024 1.000000
|
|
532
|
+
x....039 UC...039 1.000000
|
|
533
|
+
x....040 CNS..002 -1.000000 CNS..024 1.000000
|
|
534
|
+
x....040 UC...040 1.000000
|
|
535
|
+
x....041 CNS..024 -1.000000 CNS..025 1.000000
|
|
536
|
+
x....041 UC...041 1.000000
|
|
537
|
+
x....042 CNS..023 1.000000 CNS..025 -1.000000
|
|
538
|
+
x....042 UC...042 1.000000
|
|
539
|
+
x....043 CNS..002 -1.000000 CNS..026 1.000000
|
|
540
|
+
x....043 UC...043 1.000000
|
|
541
|
+
x....044 CNS..002 -1.000000 CNS..026 1.000000
|
|
542
|
+
x....044 UC...044 1.000000
|
|
543
|
+
x....045 CNS..023 1.000000 CNS..026 -1.000000
|
|
544
|
+
x....045 UC...045 1.000000
|
|
545
|
+
x....046 CNS..026 -1.000000 CNS..027 1.000000
|
|
546
|
+
x....046 UC...046 1.000000
|
|
547
|
+
x....047 CNS..023 1.000000 CNS..027 -1.000000
|
|
548
|
+
x....047 UC...047 1.000000
|
|
549
|
+
x....048 CNS..002 -1.000000 CNS..028 1.000000
|
|
550
|
+
x....048 UC...048 1.000000
|
|
551
|
+
x....049 CNS..002 -1.000000 CNS..028 1.000000
|
|
552
|
+
x....049 UC...049 1.000000
|
|
553
|
+
x....050 CNS..028 -1.000000 CNS..029 1.000000
|
|
554
|
+
x....050 UC...050 1.000000
|
|
555
|
+
x....051 CNS..023 1.000000 CNS..029 -1.000000
|
|
556
|
+
x....051 UC...051 1.000000
|
|
557
|
+
x....052 CNS..023 1.000000 CNS..028 -1.000000
|
|
558
|
+
x....052 UC...052 1.000000
|
|
559
|
+
x....053 CNS..002 -1.000000 CNS..030 1.000000
|
|
560
|
+
x....053 UC...053 1.000000
|
|
561
|
+
x....054 CNS..002 -1.000000 CNS..030 1.000000
|
|
562
|
+
x....054 UC...054 1.000000
|
|
563
|
+
x....055 CNS..030 -1.000000 CNS..031 1.000000
|
|
564
|
+
x....055 UC...055 1.000000
|
|
565
|
+
x....056 CNS..023 1.000000 CNS..031 -1.000000
|
|
566
|
+
x....056 UC...056 1.000000
|
|
567
|
+
x....057 CNS..023 -1.000000 CNS..033 1.000000
|
|
568
|
+
x....057 UC...057 1.000000
|
|
569
|
+
x....058 CNS..023 -1.000000 CNS..033 1.000000
|
|
570
|
+
x....058 UC...058 1.000000
|
|
571
|
+
x....059 CNS..023 -1.000000 CNS..034 1.000000
|
|
572
|
+
x....059 UC...059 1.000000
|
|
573
|
+
x....060 CNS..033 1.000000 CNS..034 -1.000000
|
|
574
|
+
x....060 UC...060 1.000000
|
|
575
|
+
x....061 CNS..033 -1.000000 CNS..035 1.000000
|
|
576
|
+
x....061 UC...061 1.000000
|
|
577
|
+
x....062 CNS..032 1.000000 CNS..035 -1.000000
|
|
578
|
+
x....062 UC...062 1.000000
|
|
579
|
+
x....063 CNS..032 1.000000 CNS..033 -1.000000
|
|
580
|
+
x....063 UC...063 1.000000
|
|
581
|
+
x....064 CNS..033 -1.000000 CNS..036 1.000000
|
|
582
|
+
x....064 UC...064 1.000000
|
|
583
|
+
x....065 CNS..032 1.000000 CNS..036 -1.000000
|
|
584
|
+
x....065 UC...065 1.000000
|
|
585
|
+
x....066 CNS..032 -1.000000 CNS..038 1.000000
|
|
586
|
+
x....066 UC...066 1.000000
|
|
587
|
+
x....067 CNS..037 1.000000 CNS..038 -1.000000
|
|
588
|
+
x....067 UC...067 1.000000
|
|
589
|
+
x....068 CNS..032 -1.000000 CNS..037 1.000000
|
|
590
|
+
x....068 UC...068 1.000000
|
|
591
|
+
x....069 CNS..032 -1.000000 CNS..037 1.000000
|
|
592
|
+
x....069 UC...069 1.000000
|
|
593
|
+
x....070 CNS..037 -1.000000 CNS..040 1.000000
|
|
594
|
+
x....070 UC...070 1.000000
|
|
595
|
+
x....071 CNS..039 1.000000 CNS..040 -1.000000
|
|
596
|
+
x....071 UC...071 1.000000
|
|
597
|
+
x....072 CNS..037 -1.000000 CNS..039 1.000000
|
|
598
|
+
x....072 UC...072 1.000000
|
|
599
|
+
x....073 CNS..003 1.000000 CNS..039 -1.000000
|
|
600
|
+
x....073 UC...073 1.000000
|
|
601
|
+
x....074 CNS..003 1.000000 CNS..039 -1.000000
|
|
602
|
+
x....074 UC...074 1.000000
|
|
603
|
+
x....075 CNS..003 1.000000 CNS..039 -1.000000
|
|
604
|
+
x....075 UC...075 1.000000
|
|
605
|
+
x....076 CNS..002 -1.000000 CNS..042 1.000000
|
|
606
|
+
x....076 UC...076 1.000000
|
|
607
|
+
x....077 CNS..002 -1.000000 CNS..042 1.000000
|
|
608
|
+
x....077 UC...077 1.000000
|
|
609
|
+
x....078 CNS..002 -1.000000 CNS..043 1.000000
|
|
610
|
+
x....078 UC...078 1.000000
|
|
611
|
+
x....079 CNS..042 1.000000 CNS..043 -1.000000
|
|
612
|
+
x....079 UC...079 1.000000
|
|
613
|
+
x....080 CNS..042 -1.000000 CNS..044 1.000000
|
|
614
|
+
x....080 UC...080 1.000000
|
|
615
|
+
x....081 CNS..042 -1.000000 CNS..044 1.000000
|
|
616
|
+
x....081 UC...081 1.000000
|
|
617
|
+
x....082 CNS..044 -1.000000 CNS..045 1.000000
|
|
618
|
+
x....082 UC...082 1.000000
|
|
619
|
+
x....083 CNS..041 1.000000 CNS..045 -1.000000
|
|
620
|
+
x....083 UC...083 1.000000
|
|
621
|
+
x....084 CNS..041 1.000000 CNS..044 -1.000000
|
|
622
|
+
x....084 UC...084 1.000000
|
|
623
|
+
x....085 CNS..041 -1.000000 CNS..047 1.000000
|
|
624
|
+
x....085 UC...085 1.000000
|
|
625
|
+
x....086 CNS..041 -1.000000 CNS..047 1.000000
|
|
626
|
+
x....086 UC...086 1.000000
|
|
627
|
+
x....087 CNS..047 -1.000000 CNS..048 1.000000
|
|
628
|
+
x....087 UC...087 1.000000
|
|
629
|
+
x....088 CNS..046 1.000000 CNS..048 -1.000000
|
|
630
|
+
x....088 UC...088 1.000000
|
|
631
|
+
x....089 CNS..046 1.000000 CNS..047 -1.000000
|
|
632
|
+
x....089 UC...089 1.000000
|
|
633
|
+
x....090 CNS..003 1.000000 CNS..046 -1.000000
|
|
634
|
+
x....090 UC...090 1.000000
|
|
635
|
+
x....091 CNS..003 1.000000 CNS..046 -1.000000
|
|
636
|
+
x....091 UC...091 1.000000
|
|
637
|
+
x....092 CNS..046 -1.000000 CNS..049 1.000000
|
|
638
|
+
x....092 UC...092 1.000000
|
|
639
|
+
x....093 CNS..003 1.000000 CNS..049 -1.000000
|
|
640
|
+
x....093 UC...093 1.000000
|
|
641
|
+
x....094 CNS..002 -1.000000 CNS..051 1.000000
|
|
642
|
+
x....094 UC...094 1.000000
|
|
643
|
+
x....095 CNS..002 -1.000000 CNS..052 1.000000
|
|
644
|
+
x....095 UC...095 1.000000
|
|
645
|
+
x....096 CNS..051 1.000000 CNS..052 -1.000000
|
|
646
|
+
x....096 UC...096 1.000000
|
|
647
|
+
x....097 CNS..051 -1.000000 CNS..053 1.000000
|
|
648
|
+
x....097 UC...097 1.000000
|
|
649
|
+
x....098 CNS..050 1.000000 CNS..053 -1.000000
|
|
650
|
+
x....098 UC...098 1.000000
|
|
651
|
+
x....099 CNS..050 1.000000 CNS..051 -1.000000
|
|
652
|
+
x....099 UC...099 1.000000
|
|
653
|
+
x....100 CNS..002 -1.000000 CNS..050 1.000000
|
|
654
|
+
x....100 UC...100 1.000000
|
|
655
|
+
x....101 CNS..002 -1.000000 CNS..054 1.000000
|
|
656
|
+
x....101 UC...101 1.000000
|
|
657
|
+
x....102 CNS..050 1.000000 CNS..054 -1.000000
|
|
658
|
+
x....102 UC...102 1.000000
|
|
659
|
+
x....103 CNS..002 -1.000000 CNS..055 1.000000
|
|
660
|
+
x....103 UC...103 1.000000
|
|
661
|
+
x....104 CNS..050 1.000000 CNS..055 -1.000000
|
|
662
|
+
x....104 UC...104 1.000000
|
|
663
|
+
x....105 CNS..050 -1.000000 CNS..056 1.000000
|
|
664
|
+
x....105 UC...105 1.000000
|
|
665
|
+
x....106 CNS..050 -1.000000 CNS..057 1.000000
|
|
666
|
+
x....106 UC...106 1.000000
|
|
667
|
+
x....107 CNS..056 1.000000 CNS..057 -1.000000
|
|
668
|
+
x....107 UC...107 1.000000
|
|
669
|
+
x....108 CNS..050 -1.000000 CNS..058 1.000000
|
|
670
|
+
x....108 UC...108 1.000000
|
|
671
|
+
x....109 CNS..056 1.000000 CNS..058 -1.000000
|
|
672
|
+
x....109 UC...109 1.000000
|
|
673
|
+
x....110 CNS..003 1.000000 CNS..056 -1.000000
|
|
674
|
+
x....110 UC...110 1.000000
|
|
675
|
+
x....111 CNS..003 1.000000 CNS..056 -1.000000
|
|
676
|
+
x....111 UC...111 1.000000
|
|
677
|
+
x....112 CNS..056 -1.000000 CNS..059 1.000000
|
|
678
|
+
x....112 UC...112 1.000000
|
|
679
|
+
x....113 CNS..003 1.000000 CNS..059 -1.000000
|
|
680
|
+
x....113 UC...113 1.000000
|
|
681
|
+
x....114 CNS..002 -1.000000 CNS..062 1.000000
|
|
682
|
+
x....114 UC...114 1.000000
|
|
683
|
+
x....115 CNS..002 -1.000000 CNS..062 1.000000
|
|
684
|
+
x....115 UC...115 1.000000
|
|
685
|
+
x....116 CNS..062 -1.000000 CNS..063 1.000000
|
|
686
|
+
x....116 UC...116 1.000000
|
|
687
|
+
x....117 CNS..061 1.000000 CNS..063 -1.000000
|
|
688
|
+
x....117 UC...117 1.000000
|
|
689
|
+
x....118 CNS..002 -1.000000 CNS..064 1.000000
|
|
690
|
+
x....118 UC...118 1.000000
|
|
691
|
+
x....119 CNS..061 1.000000 CNS..064 -1.000000
|
|
692
|
+
x....119 UC...119 1.000000
|
|
693
|
+
x....120 CNS..002 -1.000000 CNS..061 1.000000
|
|
694
|
+
x....120 UC...120 1.000000
|
|
695
|
+
x....121 CNS..002 -1.000000 CNS..065 1.000000
|
|
696
|
+
x....121 UC...121 1.000000
|
|
697
|
+
x....122 CNS..061 1.000000 CNS..065 -1.000000
|
|
698
|
+
x....122 UC...122 1.000000
|
|
699
|
+
x....123 CNS..061 -1.000000 CNS..068 1.000000
|
|
700
|
+
x....123 UC...123 1.000000
|
|
701
|
+
x....124 CNS..067 1.000000 CNS..068 -1.000000
|
|
702
|
+
x....124 UC...124 1.000000
|
|
703
|
+
x....125 CNS..061 -1.000000 CNS..067 1.000000
|
|
704
|
+
x....125 UC...125 1.000000
|
|
705
|
+
x....126 CNS..061 -1.000000 CNS..067 1.000000
|
|
706
|
+
x....126 UC...126 1.000000
|
|
707
|
+
x....127 CNS..066 1.000000 CNS..067 -1.000000
|
|
708
|
+
x....127 UC...127 1.000000
|
|
709
|
+
x....128 CNS..066 1.000000 CNS..067 -1.000000
|
|
710
|
+
x....128 UC...128 1.000000
|
|
711
|
+
x....129 CNS..066 -1.000000 CNS..069 1.000000
|
|
712
|
+
x....129 UC...129 1.000000
|
|
713
|
+
x....130 CNS..060 1.000000 CNS..069 -1.000000
|
|
714
|
+
x....130 UC...130 1.000000
|
|
715
|
+
x....131 CNS..060 1.000000 CNS..066 -1.000000
|
|
716
|
+
x....131 UC...131 1.000000
|
|
717
|
+
x....132 CNS..060 1.000000 CNS..066 -1.000000
|
|
718
|
+
x....132 UC...132 1.000000
|
|
719
|
+
x....133 CNS..060 -1.000000 CNS..070 1.000000
|
|
720
|
+
x....133 UC...133 1.000000
|
|
721
|
+
x....134 CNS..060 -1.000000 CNS..071 1.000000
|
|
722
|
+
x....134 UC...134 1.000000
|
|
723
|
+
x....135 CNS..070 1.000000 CNS..071 -1.000000
|
|
724
|
+
x....135 UC...135 1.000000
|
|
725
|
+
x....136 CNS..060 -1.000000 CNS..072 1.000000
|
|
726
|
+
x....136 UC...136 1.000000
|
|
727
|
+
x....137 CNS..060 -1.000000 CNS..072 1.000000
|
|
728
|
+
x....137 UC...137 1.000000
|
|
729
|
+
x....138 CNS..070 1.000000 CNS..072 -1.000000
|
|
730
|
+
x....138 UC...138 1.000000
|
|
731
|
+
x....139 CNS..072 -1.000000 CNS..073 1.000000
|
|
732
|
+
x....139 UC...139 1.000000
|
|
733
|
+
x....140 CNS..070 1.000000 CNS..073 -1.000000
|
|
734
|
+
x....140 UC...140 1.000000
|
|
735
|
+
x....141 CNS..070 -1.000000 CNS..074 1.000000
|
|
736
|
+
x....141 UC...141 1.000000
|
|
737
|
+
x....142 CNS..070 -1.000000 CNS..074 1.000000
|
|
738
|
+
x....142 UC...142 1.000000
|
|
739
|
+
x....143 CNS..070 -1.000000 CNS..074 1.000000
|
|
740
|
+
x....143 UC...143 1.000000
|
|
741
|
+
x....144 CNS..070 -1.000000 CNS..075 1.000000
|
|
742
|
+
x....144 UC...144 1.000000
|
|
743
|
+
x....145 CNS..074 1.000000 CNS..075 -1.000000
|
|
744
|
+
x....145 UC...145 1.000000
|
|
745
|
+
x....146 CNS..074 -1.000000 CNS..076 1.000000
|
|
746
|
+
x....146 UC...146 1.000000
|
|
747
|
+
x....147 CNS..003 1.000000 CNS..076 -1.000000
|
|
748
|
+
x....147 UC...147 1.000000
|
|
749
|
+
x....148 CNS..003 1.000000 CNS..074 -1.000000
|
|
750
|
+
x....148 UC...148 1.000000
|
|
751
|
+
x....149 CNS..074 -1.000000 CNS..077 1.000000
|
|
752
|
+
x....149 UC...149 1.000000
|
|
753
|
+
x....150 CNS..003 1.000000 CNS..077 -1.000000
|
|
754
|
+
x....150 UC...150 1.000000
|
|
755
|
+
x....151 CNS..003 -1.000000 CNS..079 1.000000
|
|
756
|
+
x....151 UC...151 1.000000
|
|
757
|
+
x....152 CNS..078 1.000000 CNS..079 -1.000000
|
|
758
|
+
x....152 UC...152 1.000000
|
|
759
|
+
x....153 CNS..079 -1.000000 CNS..080 1.000000
|
|
760
|
+
x....153 UC...153 1.000000
|
|
761
|
+
x....154 CNS..078 1.000000 CNS..080 -1.000000
|
|
762
|
+
x....154 UC...154 1.000000
|
|
763
|
+
x....155 CNS..003 -1.000000 CNS..082 1.000000
|
|
764
|
+
x....155 UC...155 1.000000
|
|
765
|
+
x....156 CNS..081 1.000000 CNS..082 -1.000000
|
|
766
|
+
x....156 UC...156 1.000000
|
|
767
|
+
x....157 CNS..003 -1.000000 CNS..081 1.000000
|
|
768
|
+
x....157 UC...157 1.000000
|
|
769
|
+
x....158 CNS..078 1.000000 CNS..081 -1.000000
|
|
770
|
+
x....158 UC...158 1.000000
|
|
771
|
+
x....159 CNS..081 -1.000000 CNS..083 1.000000
|
|
772
|
+
x....159 UC...159 1.000000
|
|
773
|
+
x....160 CNS..078 1.000000 CNS..083 -1.000000
|
|
774
|
+
x....160 UC...160 1.000000
|
|
775
|
+
x....161 CNS..003 -1.000000 CNS..084 1.000000
|
|
776
|
+
x....161 UC...161 1.000000
|
|
777
|
+
x....162 CNS..003 -1.000000 CNS..084 1.000000
|
|
778
|
+
x....162 UC...162 1.000000
|
|
779
|
+
x....163 CNS..003 -1.000000 CNS..085 1.000000
|
|
780
|
+
x....163 UC...163 1.000000
|
|
781
|
+
x....164 CNS..084 1.000000 CNS..085 -1.000000
|
|
782
|
+
x....164 UC...164 1.000000
|
|
783
|
+
x....165 CNS..078 1.000000 CNS..084 -1.000000
|
|
784
|
+
x....165 UC...165 1.000000
|
|
785
|
+
x....166 CNS..084 -1.000000 CNS..086 1.000000
|
|
786
|
+
x....166 UC...166 1.000000
|
|
787
|
+
x....167 CNS..078 1.000000 CNS..086 -1.000000
|
|
788
|
+
x....167 UC...167 1.000000
|
|
789
|
+
x....168 CNS..084 -1.000000 CNS..087 1.000000
|
|
790
|
+
x....168 UC...168 1.000000
|
|
791
|
+
x....169 CNS..078 1.000000 CNS..087 -1.000000
|
|
792
|
+
x....169 UC...169 1.000000
|
|
793
|
+
x....170 CNS..078 -1.000000 CNS..090 1.000000
|
|
794
|
+
x....170 UC...170 1.000000
|
|
795
|
+
x....171 CNS..089 1.000000 CNS..090 -1.000000
|
|
796
|
+
x....171 UC...171 1.000000
|
|
797
|
+
x....172 CNS..078 -1.000000 CNS..089 1.000000
|
|
798
|
+
x....172 UC...172 1.000000
|
|
799
|
+
x....173 CNS..088 1.000000 CNS..089 -1.000000
|
|
800
|
+
x....173 UC...173 1.000000
|
|
801
|
+
x....174 CNS..088 1.000000 CNS..089 -1.000000
|
|
802
|
+
x....174 UC...174 1.000000
|
|
803
|
+
x....175 CNS..078 -1.000000 CNS..091 1.000000
|
|
804
|
+
x....175 UC...175 1.000000
|
|
805
|
+
x....176 CNS..091 -1.000000 CNS..092 1.000000
|
|
806
|
+
x....176 UC...176 1.000000
|
|
807
|
+
x....177 CNS..088 1.000000 CNS..092 -1.000000
|
|
808
|
+
x....177 UC...177 1.000000
|
|
809
|
+
x....178 CNS..088 1.000000 CNS..091 -1.000000
|
|
810
|
+
x....178 UC...178 1.000000
|
|
811
|
+
x....179 CNS..088 -1.000000 CNS..093 1.000000
|
|
812
|
+
x....179 UC...179 1.000000
|
|
813
|
+
x....180 CNS..088 -1.000000 CNS..093 1.000000
|
|
814
|
+
x....180 UC...180 1.000000
|
|
815
|
+
x....181 CNS..088 -1.000000 CNS..094 1.000000
|
|
816
|
+
x....181 UC...181 1.000000
|
|
817
|
+
x....182 CNS..093 1.000000 CNS..094 -1.000000
|
|
818
|
+
x....182 UC...182 1.000000
|
|
819
|
+
x....183 CNS..093 -1.000000 CNS..095 1.000000
|
|
820
|
+
x....183 UC...183 1.000000
|
|
821
|
+
x....184 CNS..093 -1.000000 CNS..095 1.000000
|
|
822
|
+
x....184 UC...184 1.000000
|
|
823
|
+
x....185 CNS..093 -1.000000 CNS..095 1.000000
|
|
824
|
+
x....185 UC...185 1.000000
|
|
825
|
+
x....186 CNS..001 1.000000 CNS..095 -1.000000
|
|
826
|
+
x....186 UC...186 1.000000
|
|
827
|
+
x....187 CNS..095 -1.000000 CNS..096 1.000000
|
|
828
|
+
x....187 UC...187 1.000000
|
|
829
|
+
x....188 CNS..001 1.000000 CNS..096 -1.000000
|
|
830
|
+
x....188 UC...188 1.000000
|
|
831
|
+
x....189 CNS..003 -1.000000 CNS..098 1.000000
|
|
832
|
+
x....189 UC...189 1.000000
|
|
833
|
+
x....190 CNS..003 -1.000000 CNS..098 1.000000
|
|
834
|
+
x....190 UC...190 1.000000
|
|
835
|
+
x....191 CNS..097 1.000000 CNS..098 -1.000000
|
|
836
|
+
x....191 UC...191 1.000000
|
|
837
|
+
x....192 CNS..098 -1.000000 CNS..099 1.000000
|
|
838
|
+
x....192 UC...192 1.000000
|
|
839
|
+
x....193 CNS..097 1.000000 CNS..099 -1.000000
|
|
840
|
+
x....193 UC...193 1.000000
|
|
841
|
+
x....194 CNS..003 -1.000000 CNS..100 1.000000
|
|
842
|
+
x....194 UC...194 1.000000
|
|
843
|
+
x....195 CNS..097 1.000000 CNS..100 -1.000000
|
|
844
|
+
x....195 UC...195 1.000000
|
|
845
|
+
x....196 CNS..003 -1.000000 CNS..097 1.000000
|
|
846
|
+
x....196 UC...196 1.000000
|
|
847
|
+
x....197 CNS..003 -1.000000 CNS..101 1.000000
|
|
848
|
+
x....197 UC...197 1.000000
|
|
849
|
+
x....198 CNS..097 1.000000 CNS..101 -1.000000
|
|
850
|
+
x....198 UC...198 1.000000
|
|
851
|
+
x....199 CNS..003 -1.000000 CNS..103 1.000000
|
|
852
|
+
x....199 UC...199 1.000000
|
|
853
|
+
x....200 CNS..102 1.000000 CNS..103 -1.000000
|
|
854
|
+
x....200 UC...200 1.000000
|
|
855
|
+
x....201 CNS..003 -1.000000 CNS..102 1.000000
|
|
856
|
+
x....201 UC...201 1.000000
|
|
857
|
+
x....202 CNS..003 -1.000000 CNS..104 1.000000
|
|
858
|
+
x....202 UC...202 1.000000
|
|
859
|
+
x....203 CNS..102 1.000000 CNS..104 -1.000000
|
|
860
|
+
x....203 UC...203 1.000000
|
|
861
|
+
x....204 CNS..102 -1.000000 CNS..105 1.000000
|
|
862
|
+
x....204 UC...204 1.000000
|
|
863
|
+
x....205 CNS..102 -1.000000 CNS..105 1.000000
|
|
864
|
+
x....205 UC...205 1.000000
|
|
865
|
+
x....206 CNS..097 1.000000 CNS..105 -1.000000
|
|
866
|
+
x....206 UC...206 1.000000
|
|
867
|
+
x....207 CNS..105 -1.000000 CNS..106 1.000000
|
|
868
|
+
x....207 UC...207 1.000000
|
|
869
|
+
x....208 CNS..097 1.000000 CNS..106 -1.000000
|
|
870
|
+
x....208 UC...208 1.000000
|
|
871
|
+
x....209 CNS..097 -1.000000 CNS..108 1.000000
|
|
872
|
+
x....209 UC...209 1.000000
|
|
873
|
+
x....210 CNS..107 1.000000 CNS..108 -1.000000
|
|
874
|
+
x....210 UC...210 1.000000
|
|
875
|
+
x....211 CNS..097 -1.000000 CNS..107 1.000000
|
|
876
|
+
x....211 UC...211 1.000000
|
|
877
|
+
x....212 CNS..097 -1.000000 CNS..109 1.000000
|
|
878
|
+
x....212 UC...212 1.000000
|
|
879
|
+
x....213 CNS..107 1.000000 CNS..109 -1.000000
|
|
880
|
+
x....213 UC...213 1.000000
|
|
881
|
+
x....214 CNS..107 -1.000000 CNS..110 1.000000
|
|
882
|
+
x....214 UC...214 1.000000
|
|
883
|
+
x....215 CNS..001 1.000000 CNS..110 -1.000000
|
|
884
|
+
x....215 UC...215 1.000000
|
|
885
|
+
x....216 CNS..001 1.000000 CNS..107 -1.000000
|
|
886
|
+
x....216 UC...216 1.000000
|
|
887
|
+
x....217 CNS..001 1.000000 CNS..107 -1.000000
|
|
888
|
+
x....217 UC...217 1.000000
|
|
889
|
+
x....218 CNS..097 -1.000000 CNS..111 1.000000
|
|
890
|
+
x....218 UC...218 1.000000
|
|
891
|
+
x....219 CNS..097 -1.000000 CNS..111 1.000000
|
|
892
|
+
x....219 UC...219 1.000000
|
|
893
|
+
x....220 CNS..097 -1.000000 CNS..112 1.000000
|
|
894
|
+
x....220 UC...220 1.000000
|
|
895
|
+
x....221 CNS..111 1.000000 CNS..112 -1.000000
|
|
896
|
+
x....221 UC...221 1.000000
|
|
897
|
+
x....222 CNS..111 -1.000000 CNS..113 1.000000
|
|
898
|
+
x....222 UC...222 1.000000
|
|
899
|
+
x....223 CNS..001 1.000000 CNS..113 -1.000000
|
|
900
|
+
x....223 UC...223 1.000000
|
|
901
|
+
x....224 CNS..001 1.000000 CNS..111 -1.000000
|
|
902
|
+
x....224 UC...224 1.000000
|
|
903
|
+
x....225 CNS..111 -1.000000 CNS..114 1.000000
|
|
904
|
+
x....225 UC...225 1.000000
|
|
905
|
+
x....226 CNS..001 1.000000 CNS..114 -1.000000
|
|
906
|
+
x....226 UC...226 1.000000
|
|
907
|
+
x....227 CNS..003 -1.000000 CNS..116 1.000000
|
|
908
|
+
x....227 UC...227 1.000000
|
|
909
|
+
x....228 CNS..003 -1.000000 CNS..117 1.000000
|
|
910
|
+
x....228 UC...228 1.000000
|
|
911
|
+
x....229 CNS..116 1.000000 CNS..117 -1.000000
|
|
912
|
+
x....229 UC...229 1.000000
|
|
913
|
+
x....230 CNS..003 -1.000000 CNS..116 1.000000
|
|
914
|
+
x....230 UC...230 1.000000
|
|
915
|
+
x....231 CNS..003 -1.000000 CNS..118 1.000000
|
|
916
|
+
x....231 UC...231 1.000000
|
|
917
|
+
x....232 CNS..003 -1.000000 CNS..118 1.000000
|
|
918
|
+
x....232 UC...232 1.000000
|
|
919
|
+
x....233 CNS..118 -1.000000 CNS..119 1.000000
|
|
920
|
+
x....233 UC...233 1.000000
|
|
921
|
+
x....234 CNS..116 1.000000 CNS..119 -1.000000
|
|
922
|
+
x....234 UC...234 1.000000
|
|
923
|
+
x....235 CNS..116 -1.000000 CNS..122 1.000000
|
|
924
|
+
x....235 UC...235 1.000000
|
|
925
|
+
x....236 CNS..121 1.000000 CNS..122 -1.000000
|
|
926
|
+
x....236 UC...236 1.000000
|
|
927
|
+
x....237 CNS..116 -1.000000 CNS..121 1.000000
|
|
928
|
+
x....237 UC...237 1.000000
|
|
929
|
+
x....238 CNS..120 1.000000 CNS..121 -1.000000
|
|
930
|
+
x....238 UC...238 1.000000
|
|
931
|
+
x....239 CNS..120 1.000000 CNS..121 -1.000000
|
|
932
|
+
x....239 UC...239 1.000000
|
|
933
|
+
x....240 CNS..120 1.000000 CNS..121 -1.000000
|
|
934
|
+
x....240 UC...240 1.000000
|
|
935
|
+
x....241 CNS..120 -1.000000 CNS..123 1.000000
|
|
936
|
+
x....241 UC...241 1.000000
|
|
937
|
+
x....242 CNS..115 1.000000 CNS..123 -1.000000
|
|
938
|
+
x....242 UC...242 1.000000
|
|
939
|
+
x....243 CNS..115 1.000000 CNS..120 -1.000000
|
|
940
|
+
x....243 UC...243 1.000000
|
|
941
|
+
x....244 CNS..115 1.000000 CNS..120 -1.000000
|
|
942
|
+
x....244 UC...244 1.000000
|
|
943
|
+
x....245 CNS..115 -1.000000 CNS..125 1.000000
|
|
944
|
+
x....245 UC...245 1.000000
|
|
945
|
+
x....246 CNS..124 1.000000 CNS..125 -1.000000
|
|
946
|
+
x....246 UC...246 1.000000
|
|
947
|
+
x....247 CNS..115 -1.000000 CNS..124 1.000000
|
|
948
|
+
x....247 UC...247 1.000000
|
|
949
|
+
x....248 CNS..115 -1.000000 CNS..126 1.000000
|
|
950
|
+
x....248 UC...248 1.000000
|
|
951
|
+
x....249 CNS..124 1.000000 CNS..126 -1.000000
|
|
952
|
+
x....249 UC...249 1.000000
|
|
953
|
+
x....250 CNS..001 1.000000 CNS..124 -1.000000
|
|
954
|
+
x....250 UC...250 1.000000
|
|
955
|
+
x....251 CNS..001 1.000000 CNS..124 -1.000000
|
|
956
|
+
x....251 UC...251 1.000000
|
|
957
|
+
x....252 CNS..124 -1.000000 CNS..127 1.000000
|
|
958
|
+
x....252 UC...252 1.000000
|
|
959
|
+
x....253 CNS..001 1.000000 CNS..127 -1.000000
|
|
960
|
+
x....253 UC...253 1.000000
|
|
961
|
+
x....254 CNS..115 -1.000000 CNS..129 1.000000
|
|
962
|
+
x....254 UC...254 1.000000
|
|
963
|
+
x....255 CNS..128 1.000000 CNS..129 -1.000000
|
|
964
|
+
x....255 UC...255 1.000000
|
|
965
|
+
x....256 CNS..001 1.000000 CNS..128 -1.000000
|
|
966
|
+
x....256 UC...256 1.000000
|
|
967
|
+
x....257 CNS..128 -1.000000 CNS..130 1.000000
|
|
968
|
+
x....257 UC...257 1.000000
|
|
969
|
+
x....258 CNS..001 1.000000 CNS..130 -1.000000
|
|
970
|
+
x....258 UC...258 1.000000
|
|
971
|
+
x....259 CNS..115 -1.000000 CNS..131 1.000000
|
|
972
|
+
x....259 UC...259 1.000000
|
|
973
|
+
x....260 CNS..001 1.000000 CNS..131 -1.000000
|
|
974
|
+
x....260 UC...260 1.000000
|
|
975
|
+
x....261 CNS..001 1.000000 CNS..115 -1.000000
|
|
976
|
+
x....261 UC...261 1.000000
|
|
977
|
+
x....262 CNS..115 -1.000000 CNS..132 1.000000
|
|
978
|
+
x....262 UC...262 1.000000
|
|
979
|
+
x....263 CNS..001 1.000000 CNS..132 -1.000000
|
|
980
|
+
x....263 UC...263 1.000000
|
|
981
|
+
x....264 CNS..003 -1.000000 CNS..134 1.000000
|
|
982
|
+
x....264 UC...264 1.000000
|
|
983
|
+
x....265 CNS..003 -1.000000 CNS..134 1.000000
|
|
984
|
+
x....265 UC...265 1.000000
|
|
985
|
+
x....266 CNS..134 -1.000000 CNS..135 1.000000
|
|
986
|
+
x....266 UC...266 1.000000
|
|
987
|
+
x....267 CNS..133 1.000000 CNS..135 -1.000000
|
|
988
|
+
x....267 UC...267 1.000000
|
|
989
|
+
x....268 CNS..003 -1.000000 CNS..136 1.000000
|
|
990
|
+
x....268 UC...268 1.000000
|
|
991
|
+
x....269 CNS..003 -1.000000 CNS..136 1.000000
|
|
992
|
+
x....269 UC...269 1.000000
|
|
993
|
+
x....270 CNS..133 1.000000 CNS..136 -1.000000
|
|
994
|
+
x....270 UC...270 1.000000
|
|
995
|
+
x....271 CNS..136 -1.000000 CNS..137 1.000000
|
|
996
|
+
x....271 UC...271 1.000000
|
|
997
|
+
x....272 CNS..133 1.000000 CNS..137 -1.000000
|
|
998
|
+
x....272 UC...272 1.000000
|
|
999
|
+
x....273 CNS..003 -1.000000 CNS..138 1.000000
|
|
1000
|
+
x....273 UC...273 1.000000
|
|
1001
|
+
x....274 CNS..003 -1.000000 CNS..138 1.000000
|
|
1002
|
+
x....274 UC...274 1.000000
|
|
1003
|
+
x....275 CNS..138 -1.000000 CNS..139 1.000000
|
|
1004
|
+
x....275 UC...275 1.000000
|
|
1005
|
+
x....276 CNS..133 1.000000 CNS..139 -1.000000
|
|
1006
|
+
x....276 UC...276 1.000000
|
|
1007
|
+
x....277 CNS..133 1.000000 CNS..138 -1.000000
|
|
1008
|
+
x....277 UC...277 1.000000
|
|
1009
|
+
x....278 CNS..003 -1.000000 CNS..140 1.000000
|
|
1010
|
+
x....278 UC...278 1.000000
|
|
1011
|
+
x....279 CNS..003 -1.000000 CNS..140 1.000000
|
|
1012
|
+
x....279 UC...279 1.000000
|
|
1013
|
+
x....280 CNS..140 -1.000000 CNS..141 1.000000
|
|
1014
|
+
x....280 UC...280 1.000000
|
|
1015
|
+
x....281 CNS..133 1.000000 CNS..141 -1.000000
|
|
1016
|
+
x....281 UC...281 1.000000
|
|
1017
|
+
x....282 CNS..133 -1.000000 CNS..143 1.000000
|
|
1018
|
+
x....282 UC...282 1.000000
|
|
1019
|
+
x....283 CNS..133 -1.000000 CNS..143 1.000000
|
|
1020
|
+
x....283 UC...283 1.000000
|
|
1021
|
+
x....284 CNS..133 -1.000000 CNS..144 1.000000
|
|
1022
|
+
x....284 UC...284 1.000000
|
|
1023
|
+
x....285 CNS..143 1.000000 CNS..144 -1.000000
|
|
1024
|
+
x....285 UC...285 1.000000
|
|
1025
|
+
x....286 CNS..143 -1.000000 CNS..145 1.000000
|
|
1026
|
+
x....286 UC...286 1.000000
|
|
1027
|
+
x....287 CNS..142 1.000000 CNS..145 -1.000000
|
|
1028
|
+
x....287 UC...287 1.000000
|
|
1029
|
+
x....288 CNS..142 1.000000 CNS..143 -1.000000
|
|
1030
|
+
x....288 UC...288 1.000000
|
|
1031
|
+
x....289 CNS..143 -1.000000 CNS..146 1.000000
|
|
1032
|
+
x....289 UC...289 1.000000
|
|
1033
|
+
x....290 CNS..142 1.000000 CNS..146 -1.000000
|
|
1034
|
+
x....290 UC...290 1.000000
|
|
1035
|
+
x....291 CNS..142 -1.000000 CNS..148 1.000000
|
|
1036
|
+
x....291 UC...291 1.000000
|
|
1037
|
+
x....292 CNS..147 1.000000 CNS..148 -1.000000
|
|
1038
|
+
x....292 UC...292 1.000000
|
|
1039
|
+
x....293 CNS..142 -1.000000 CNS..147 1.000000
|
|
1040
|
+
x....293 UC...293 1.000000
|
|
1041
|
+
x....294 CNS..142 -1.000000 CNS..147 1.000000
|
|
1042
|
+
x....294 UC...294 1.000000
|
|
1043
|
+
x....295 CNS..147 -1.000000 CNS..150 1.000000
|
|
1044
|
+
x....295 UC...295 1.000000
|
|
1045
|
+
x....296 CNS..149 1.000000 CNS..150 -1.000000
|
|
1046
|
+
x....296 UC...296 1.000000
|
|
1047
|
+
x....297 CNS..147 -1.000000 CNS..149 1.000000
|
|
1048
|
+
x....297 UC...297 1.000000
|
|
1049
|
+
x....298 CNS..001 1.000000 CNS..149 -1.000000
|
|
1050
|
+
x....298 UC...298 1.000000
|
|
1051
|
+
x....299 CNS..001 1.000000 CNS..149 -1.000000
|
|
1052
|
+
x....299 UC...299 1.000000
|
|
1053
|
+
x....300 CNS..001 1.000000 CNS..149 -1.000000
|
|
1054
|
+
x....300 UC...300 1.000000
|
|
1055
|
+
y....001 OBJ..... 1.000000 UC...001 -3049.000000
|
|
1056
|
+
y....002 OBJ..... 1.000000 UC...002 -3049.000000
|
|
1057
|
+
y....003 OBJ..... 1.000000 UC...003 -3049.000000
|
|
1058
|
+
y....004 OBJ..... 1.000000 UC...004 -3049.000000
|
|
1059
|
+
y....005 OBJ..... 1.000000 UC...005 -3049.000000
|
|
1060
|
+
y....006 OBJ..... 1.000000 UC...006 -3049.000000
|
|
1061
|
+
y....007 OBJ..... 1.000000 UC...007 -3049.000000
|
|
1062
|
+
y....008 OBJ..... 1.000000 UC...008 -3049.000000
|
|
1063
|
+
y....009 OBJ..... 1.000000 UC...009 -3049.000000
|
|
1064
|
+
y....010 OBJ..... 1.000000 UC...010 -3049.000000
|
|
1065
|
+
y....011 OBJ..... 1.000000 UC...011 -3049.000000
|
|
1066
|
+
y....012 OBJ..... 1.000000 UC...012 -3049.000000
|
|
1067
|
+
y....013 OBJ..... 1.000000 UC...013 -3049.000000
|
|
1068
|
+
y....014 OBJ..... 1.000000 UC...014 -3049.000000
|
|
1069
|
+
y....015 OBJ..... 1.000000 UC...015 -3049.000000
|
|
1070
|
+
y....016 OBJ..... 1.000000 UC...016 -3049.000000
|
|
1071
|
+
y....017 OBJ..... 1.000000 UC...017 -3049.000000
|
|
1072
|
+
y....018 OBJ..... 1.000000 UC...018 -3049.000000
|
|
1073
|
+
y....019 OBJ..... 1.000000 UC...019 -3049.000000
|
|
1074
|
+
y....020 OBJ..... 1.000000 UC...020 -3049.000000
|
|
1075
|
+
y....021 OBJ..... 1.000000 UC...021 -3049.000000
|
|
1076
|
+
y....022 OBJ..... 1.000000 UC...022 -3049.000000
|
|
1077
|
+
y....023 OBJ..... 1.000000 UC...023 -3049.000000
|
|
1078
|
+
y....024 OBJ..... 1.000000 UC...024 -3049.000000
|
|
1079
|
+
y....025 OBJ..... 1.000000 UC...025 -3049.000000
|
|
1080
|
+
y....026 OBJ..... 1.000000 UC...026 -3049.000000
|
|
1081
|
+
y....027 OBJ..... 1.000000 UC...027 -3049.000000
|
|
1082
|
+
y....028 OBJ..... 1.000000 UC...028 -3049.000000
|
|
1083
|
+
y....029 OBJ..... 1.000000 UC...029 -3049.000000
|
|
1084
|
+
y....030 OBJ..... 1.000000 UC...030 -3049.000000
|
|
1085
|
+
y....031 OBJ..... 1.000000 UC...031 -3049.000000
|
|
1086
|
+
y....032 OBJ..... 1.000000 UC...032 -3049.000000
|
|
1087
|
+
y....033 OBJ..... 1.000000 UC...033 -3049.000000
|
|
1088
|
+
y....034 OBJ..... 1.000000 UC...034 -3049.000000
|
|
1089
|
+
y....035 OBJ..... 1.000000 UC...035 -3049.000000
|
|
1090
|
+
y....036 OBJ..... 1.000000 UC...036 -3049.000000
|
|
1091
|
+
y....037 OBJ..... 1.000000 UC...037 -3049.000000
|
|
1092
|
+
y....038 OBJ..... 1.000000 UC...038 -3049.000000
|
|
1093
|
+
y....039 OBJ..... 1.000000 UC...039 -3049.000000
|
|
1094
|
+
y....040 OBJ..... 1.000000 UC...040 -3049.000000
|
|
1095
|
+
y....041 OBJ..... 1.000000 UC...041 -3049.000000
|
|
1096
|
+
y....042 OBJ..... 1.000000 UC...042 -3049.000000
|
|
1097
|
+
y....043 OBJ..... 1.000000 UC...043 -3049.000000
|
|
1098
|
+
y....044 OBJ..... 1.000000 UC...044 -3049.000000
|
|
1099
|
+
y....045 OBJ..... 1.000000 UC...045 -3049.000000
|
|
1100
|
+
y....046 OBJ..... 1.000000 UC...046 -3049.000000
|
|
1101
|
+
y....047 OBJ..... 1.000000 UC...047 -3049.000000
|
|
1102
|
+
y....048 OBJ..... 1.000000 UC...048 -3049.000000
|
|
1103
|
+
y....049 OBJ..... 1.000000 UC...049 -3049.000000
|
|
1104
|
+
y....050 OBJ..... 1.000000 UC...050 -3049.000000
|
|
1105
|
+
y....051 OBJ..... 1.000000 UC...051 -3049.000000
|
|
1106
|
+
y....052 OBJ..... 1.000000 UC...052 -3049.000000
|
|
1107
|
+
y....053 OBJ..... 1.000000 UC...053 -3049.000000
|
|
1108
|
+
y....054 OBJ..... 1.000000 UC...054 -3049.000000
|
|
1109
|
+
y....055 OBJ..... 1.000000 UC...055 -3049.000000
|
|
1110
|
+
y....056 OBJ..... 1.000000 UC...056 -3049.000000
|
|
1111
|
+
y....057 OBJ..... 1.000000 UC...057 -3049.000000
|
|
1112
|
+
y....058 OBJ..... 1.000000 UC...058 -3049.000000
|
|
1113
|
+
y....059 OBJ..... 1.000000 UC...059 -3049.000000
|
|
1114
|
+
y....060 OBJ..... 1.000000 UC...060 -3049.000000
|
|
1115
|
+
y....061 OBJ..... 1.000000 UC...061 -3049.000000
|
|
1116
|
+
y....062 OBJ..... 1.000000 UC...062 -3049.000000
|
|
1117
|
+
y....063 OBJ..... 1.000000 UC...063 -3049.000000
|
|
1118
|
+
y....064 OBJ..... 1.000000 UC...064 -3049.000000
|
|
1119
|
+
y....065 OBJ..... 1.000000 UC...065 -3049.000000
|
|
1120
|
+
y....066 OBJ..... 1.000000 UC...066 -3049.000000
|
|
1121
|
+
y....067 OBJ..... 1.000000 UC...067 -3049.000000
|
|
1122
|
+
y....068 OBJ..... 1.000000 UC...068 -3049.000000
|
|
1123
|
+
y....069 OBJ..... 1.000000 UC...069 -3049.000000
|
|
1124
|
+
y....070 OBJ..... 1.000000 UC...070 -3049.000000
|
|
1125
|
+
y....071 OBJ..... 1.000000 UC...071 -3049.000000
|
|
1126
|
+
y....072 OBJ..... 1.000000 UC...072 -3049.000000
|
|
1127
|
+
y....073 OBJ..... 1.000000 UC...073 -3049.000000
|
|
1128
|
+
y....074 OBJ..... 1.000000 UC...074 -3049.000000
|
|
1129
|
+
y....075 OBJ..... 1.000000 UC...075 -3049.000000
|
|
1130
|
+
y....076 OBJ..... 1.000000 UC...076 -3049.000000
|
|
1131
|
+
y....077 OBJ..... 1.000000 UC...077 -3049.000000
|
|
1132
|
+
y....078 OBJ..... 1.000000 UC...078 -3049.000000
|
|
1133
|
+
y....079 OBJ..... 1.000000 UC...079 -3049.000000
|
|
1134
|
+
y....080 OBJ..... 1.000000 UC...080 -3049.000000
|
|
1135
|
+
y....081 OBJ..... 1.000000 UC...081 -3049.000000
|
|
1136
|
+
y....082 OBJ..... 1.000000 UC...082 -3049.000000
|
|
1137
|
+
y....083 OBJ..... 1.000000 UC...083 -3049.000000
|
|
1138
|
+
y....084 OBJ..... 1.000000 UC...084 -3049.000000
|
|
1139
|
+
y....085 OBJ..... 1.000000 UC...085 -3049.000000
|
|
1140
|
+
y....086 OBJ..... 1.000000 UC...086 -3049.000000
|
|
1141
|
+
y....087 OBJ..... 1.000000 UC...087 -3049.000000
|
|
1142
|
+
y....088 OBJ..... 1.000000 UC...088 -3049.000000
|
|
1143
|
+
y....089 OBJ..... 1.000000 UC...089 -3049.000000
|
|
1144
|
+
y....090 OBJ..... 1.000000 UC...090 -3049.000000
|
|
1145
|
+
y....091 OBJ..... 1.000000 UC...091 -3049.000000
|
|
1146
|
+
y....092 OBJ..... 1.000000 UC...092 -3049.000000
|
|
1147
|
+
y....093 OBJ..... 1.000000 UC...093 -3049.000000
|
|
1148
|
+
y....094 OBJ..... 1.000000 UC...094 -3049.000000
|
|
1149
|
+
y....095 OBJ..... 1.000000 UC...095 -3049.000000
|
|
1150
|
+
y....096 OBJ..... 1.000000 UC...096 -3049.000000
|
|
1151
|
+
y....097 OBJ..... 1.000000 UC...097 -3049.000000
|
|
1152
|
+
y....098 OBJ..... 1.000000 UC...098 -3049.000000
|
|
1153
|
+
y....099 OBJ..... 1.000000 UC...099 -3049.000000
|
|
1154
|
+
y....100 OBJ..... 1.000000 UC...100 -3049.000000
|
|
1155
|
+
y....101 OBJ..... 1.000000 UC...101 -3049.000000
|
|
1156
|
+
y....102 OBJ..... 1.000000 UC...102 -3049.000000
|
|
1157
|
+
y....103 OBJ..... 1.000000 UC...103 -3049.000000
|
|
1158
|
+
y....104 OBJ..... 1.000000 UC...104 -3049.000000
|
|
1159
|
+
y....105 OBJ..... 1.000000 UC...105 -3049.000000
|
|
1160
|
+
y....106 OBJ..... 1.000000 UC...106 -3049.000000
|
|
1161
|
+
y....107 OBJ..... 1.000000 UC...107 -3049.000000
|
|
1162
|
+
y....108 OBJ..... 1.000000 UC...108 -3049.000000
|
|
1163
|
+
y....109 OBJ..... 1.000000 UC...109 -3049.000000
|
|
1164
|
+
y....110 OBJ..... 1.000000 UC...110 -3049.000000
|
|
1165
|
+
y....111 OBJ..... 1.000000 UC...111 -3049.000000
|
|
1166
|
+
y....112 OBJ..... 1.000000 UC...112 -3049.000000
|
|
1167
|
+
y....113 OBJ..... 1.000000 UC...113 -3049.000000
|
|
1168
|
+
y....114 OBJ..... 1.000000 UC...114 -3049.000000
|
|
1169
|
+
y....115 OBJ..... 1.000000 UC...115 -3049.000000
|
|
1170
|
+
y....116 OBJ..... 1.000000 UC...116 -3049.000000
|
|
1171
|
+
y....117 OBJ..... 1.000000 UC...117 -3049.000000
|
|
1172
|
+
y....118 OBJ..... 1.000000 UC...118 -3049.000000
|
|
1173
|
+
y....119 OBJ..... 1.000000 UC...119 -3049.000000
|
|
1174
|
+
y....120 OBJ..... 1.000000 UC...120 -3049.000000
|
|
1175
|
+
y....121 OBJ..... 1.000000 UC...121 -3049.000000
|
|
1176
|
+
y....122 OBJ..... 1.000000 UC...122 -3049.000000
|
|
1177
|
+
y....123 OBJ..... 1.000000 UC...123 -3049.000000
|
|
1178
|
+
y....124 OBJ..... 1.000000 UC...124 -3049.000000
|
|
1179
|
+
y....125 OBJ..... 1.000000 UC...125 -3049.000000
|
|
1180
|
+
y....126 OBJ..... 1.000000 UC...126 -3049.000000
|
|
1181
|
+
y....127 OBJ..... 1.000000 UC...127 -3049.000000
|
|
1182
|
+
y....128 OBJ..... 1.000000 UC...128 -3049.000000
|
|
1183
|
+
y....129 OBJ..... 1.000000 UC...129 -3049.000000
|
|
1184
|
+
y....130 OBJ..... 1.000000 UC...130 -3049.000000
|
|
1185
|
+
y....131 OBJ..... 1.000000 UC...131 -3049.000000
|
|
1186
|
+
y....132 OBJ..... 1.000000 UC...132 -3049.000000
|
|
1187
|
+
y....133 OBJ..... 1.000000 UC...133 -3049.000000
|
|
1188
|
+
y....134 OBJ..... 1.000000 UC...134 -3049.000000
|
|
1189
|
+
y....135 OBJ..... 1.000000 UC...135 -3049.000000
|
|
1190
|
+
y....136 OBJ..... 1.000000 UC...136 -3049.000000
|
|
1191
|
+
y....137 OBJ..... 1.000000 UC...137 -3049.000000
|
|
1192
|
+
y....138 OBJ..... 1.000000 UC...138 -3049.000000
|
|
1193
|
+
y....139 OBJ..... 1.000000 UC...139 -3049.000000
|
|
1194
|
+
y....140 OBJ..... 1.000000 UC...140 -3049.000000
|
|
1195
|
+
y....141 OBJ..... 1.000000 UC...141 -3049.000000
|
|
1196
|
+
y....142 OBJ..... 1.000000 UC...142 -3049.000000
|
|
1197
|
+
y....143 OBJ..... 1.000000 UC...143 -3049.000000
|
|
1198
|
+
y....144 OBJ..... 1.000000 UC...144 -3049.000000
|
|
1199
|
+
y....145 OBJ..... 1.000000 UC...145 -3049.000000
|
|
1200
|
+
y....146 OBJ..... 1.000000 UC...146 -3049.000000
|
|
1201
|
+
y....147 OBJ..... 1.000000 UC...147 -3049.000000
|
|
1202
|
+
y....148 OBJ..... 1.000000 UC...148 -3049.000000
|
|
1203
|
+
y....149 OBJ..... 1.000000 UC...149 -3049.000000
|
|
1204
|
+
y....150 OBJ..... 1.000000 UC...150 -3049.000000
|
|
1205
|
+
y....151 OBJ..... 1.000000 UC...151 -3049.000000
|
|
1206
|
+
y....152 OBJ..... 1.000000 UC...152 -3049.000000
|
|
1207
|
+
y....153 OBJ..... 1.000000 UC...153 -3049.000000
|
|
1208
|
+
y....154 OBJ..... 1.000000 UC...154 -3049.000000
|
|
1209
|
+
y....155 OBJ..... 1.000000 UC...155 -3049.000000
|
|
1210
|
+
y....156 OBJ..... 1.000000 UC...156 -3049.000000
|
|
1211
|
+
y....157 OBJ..... 1.000000 UC...157 -3049.000000
|
|
1212
|
+
y....158 OBJ..... 1.000000 UC...158 -3049.000000
|
|
1213
|
+
y....159 OBJ..... 1.000000 UC...159 -3049.000000
|
|
1214
|
+
y....160 OBJ..... 1.000000 UC...160 -3049.000000
|
|
1215
|
+
y....161 OBJ..... 1.000000 UC...161 -3049.000000
|
|
1216
|
+
y....162 OBJ..... 1.000000 UC...162 -3049.000000
|
|
1217
|
+
y....163 OBJ..... 1.000000 UC...163 -3049.000000
|
|
1218
|
+
y....164 OBJ..... 1.000000 UC...164 -3049.000000
|
|
1219
|
+
y....165 OBJ..... 1.000000 UC...165 -3049.000000
|
|
1220
|
+
y....166 OBJ..... 1.000000 UC...166 -3049.000000
|
|
1221
|
+
y....167 OBJ..... 1.000000 UC...167 -3049.000000
|
|
1222
|
+
y....168 OBJ..... 1.000000 UC...168 -3049.000000
|
|
1223
|
+
y....169 OBJ..... 1.000000 UC...169 -3049.000000
|
|
1224
|
+
y....170 OBJ..... 1.000000 UC...170 -3049.000000
|
|
1225
|
+
y....171 OBJ..... 1.000000 UC...171 -3049.000000
|
|
1226
|
+
y....172 OBJ..... 1.000000 UC...172 -3049.000000
|
|
1227
|
+
y....173 OBJ..... 1.000000 UC...173 -3049.000000
|
|
1228
|
+
y....174 OBJ..... 1.000000 UC...174 -3049.000000
|
|
1229
|
+
y....175 OBJ..... 1.000000 UC...175 -3049.000000
|
|
1230
|
+
y....176 OBJ..... 1.000000 UC...176 -3049.000000
|
|
1231
|
+
y....177 OBJ..... 1.000000 UC...177 -3049.000000
|
|
1232
|
+
y....178 OBJ..... 1.000000 UC...178 -3049.000000
|
|
1233
|
+
y....179 OBJ..... 1.000000 UC...179 -3049.000000
|
|
1234
|
+
y....180 OBJ..... 1.000000 UC...180 -3049.000000
|
|
1235
|
+
y....181 OBJ..... 1.000000 UC...181 -3049.000000
|
|
1236
|
+
y....182 OBJ..... 1.000000 UC...182 -3049.000000
|
|
1237
|
+
y....183 OBJ..... 1.000000 UC...183 -3049.000000
|
|
1238
|
+
y....184 OBJ..... 1.000000 UC...184 -3049.000000
|
|
1239
|
+
y....185 OBJ..... 1.000000 UC...185 -3049.000000
|
|
1240
|
+
y....186 OBJ..... 1.000000 UC...186 -3049.000000
|
|
1241
|
+
y....187 OBJ..... 1.000000 UC...187 -3049.000000
|
|
1242
|
+
y....188 OBJ..... 1.000000 UC...188 -3049.000000
|
|
1243
|
+
y....189 OBJ..... 1.000000 UC...189 -3049.000000
|
|
1244
|
+
y....190 OBJ..... 1.000000 UC...190 -3049.000000
|
|
1245
|
+
y....191 OBJ..... 1.000000 UC...191 -3049.000000
|
|
1246
|
+
y....192 OBJ..... 1.000000 UC...192 -3049.000000
|
|
1247
|
+
y....193 OBJ..... 1.000000 UC...193 -3049.000000
|
|
1248
|
+
y....194 OBJ..... 1.000000 UC...194 -3049.000000
|
|
1249
|
+
y....195 OBJ..... 1.000000 UC...195 -3049.000000
|
|
1250
|
+
y....196 OBJ..... 1.000000 UC...196 -3049.000000
|
|
1251
|
+
y....197 OBJ..... 1.000000 UC...197 -3049.000000
|
|
1252
|
+
y....198 OBJ..... 1.000000 UC...198 -3049.000000
|
|
1253
|
+
y....199 OBJ..... 1.000000 UC...199 -3049.000000
|
|
1254
|
+
y....200 OBJ..... 1.000000 UC...200 -3049.000000
|
|
1255
|
+
y....201 OBJ..... 1.000000 UC...201 -3049.000000
|
|
1256
|
+
y....202 OBJ..... 1.000000 UC...202 -3049.000000
|
|
1257
|
+
y....203 OBJ..... 1.000000 UC...203 -3049.000000
|
|
1258
|
+
y....204 OBJ..... 1.000000 UC...204 -3049.000000
|
|
1259
|
+
y....205 OBJ..... 1.000000 UC...205 -3049.000000
|
|
1260
|
+
y....206 OBJ..... 1.000000 UC...206 -3049.000000
|
|
1261
|
+
y....207 OBJ..... 1.000000 UC...207 -3049.000000
|
|
1262
|
+
y....208 OBJ..... 1.000000 UC...208 -3049.000000
|
|
1263
|
+
y....209 OBJ..... 1.000000 UC...209 -3049.000000
|
|
1264
|
+
y....210 OBJ..... 1.000000 UC...210 -3049.000000
|
|
1265
|
+
y....211 OBJ..... 1.000000 UC...211 -3049.000000
|
|
1266
|
+
y....212 OBJ..... 1.000000 UC...212 -3049.000000
|
|
1267
|
+
y....213 OBJ..... 1.000000 UC...213 -3049.000000
|
|
1268
|
+
y....214 OBJ..... 1.000000 UC...214 -3049.000000
|
|
1269
|
+
y....215 OBJ..... 1.000000 UC...215 -3049.000000
|
|
1270
|
+
y....216 OBJ..... 1.000000 UC...216 -3049.000000
|
|
1271
|
+
y....217 OBJ..... 1.000000 UC...217 -3049.000000
|
|
1272
|
+
y....218 OBJ..... 1.000000 UC...218 -3049.000000
|
|
1273
|
+
y....219 OBJ..... 1.000000 UC...219 -3049.000000
|
|
1274
|
+
y....220 OBJ..... 1.000000 UC...220 -3049.000000
|
|
1275
|
+
y....221 OBJ..... 1.000000 UC...221 -3049.000000
|
|
1276
|
+
y....222 OBJ..... 1.000000 UC...222 -3049.000000
|
|
1277
|
+
y....223 OBJ..... 1.000000 UC...223 -3049.000000
|
|
1278
|
+
y....224 OBJ..... 1.000000 UC...224 -3049.000000
|
|
1279
|
+
y....225 OBJ..... 1.000000 UC...225 -3049.000000
|
|
1280
|
+
y....226 OBJ..... 1.000000 UC...226 -3049.000000
|
|
1281
|
+
y....227 OBJ..... 1.000000 UC...227 -3049.000000
|
|
1282
|
+
y....228 OBJ..... 1.000000 UC...228 -3049.000000
|
|
1283
|
+
y....229 OBJ..... 1.000000 UC...229 -3049.000000
|
|
1284
|
+
y....230 OBJ..... 1.000000 UC...230 -3049.000000
|
|
1285
|
+
y....231 OBJ..... 1.000000 UC...231 -3049.000000
|
|
1286
|
+
y....232 OBJ..... 1.000000 UC...232 -3049.000000
|
|
1287
|
+
y....233 OBJ..... 1.000000 UC...233 -3049.000000
|
|
1288
|
+
y....234 OBJ..... 1.000000 UC...234 -3049.000000
|
|
1289
|
+
y....235 OBJ..... 1.000000 UC...235 -3049.000000
|
|
1290
|
+
y....236 OBJ..... 1.000000 UC...236 -3049.000000
|
|
1291
|
+
y....237 OBJ..... 1.000000 UC...237 -3049.000000
|
|
1292
|
+
y....238 OBJ..... 1.000000 UC...238 -3049.000000
|
|
1293
|
+
y....239 OBJ..... 1.000000 UC...239 -3049.000000
|
|
1294
|
+
y....240 OBJ..... 1.000000 UC...240 -3049.000000
|
|
1295
|
+
y....241 OBJ..... 1.000000 UC...241 -3049.000000
|
|
1296
|
+
y....242 OBJ..... 1.000000 UC...242 -3049.000000
|
|
1297
|
+
y....243 OBJ..... 1.000000 UC...243 -3049.000000
|
|
1298
|
+
y....244 OBJ..... 1.000000 UC...244 -3049.000000
|
|
1299
|
+
y....245 OBJ..... 1.000000 UC...245 -3049.000000
|
|
1300
|
+
y....246 OBJ..... 1.000000 UC...246 -3049.000000
|
|
1301
|
+
y....247 OBJ..... 1.000000 UC...247 -3049.000000
|
|
1302
|
+
y....248 OBJ..... 1.000000 UC...248 -3049.000000
|
|
1303
|
+
y....249 OBJ..... 1.000000 UC...249 -3049.000000
|
|
1304
|
+
y....250 OBJ..... 1.000000 UC...250 -3049.000000
|
|
1305
|
+
y....251 OBJ..... 1.000000 UC...251 -3049.000000
|
|
1306
|
+
y....252 OBJ..... 1.000000 UC...252 -3049.000000
|
|
1307
|
+
y....253 OBJ..... 1.000000 UC...253 -3049.000000
|
|
1308
|
+
y....254 OBJ..... 1.000000 UC...254 -3049.000000
|
|
1309
|
+
y....255 OBJ..... 1.000000 UC...255 -3049.000000
|
|
1310
|
+
y....256 OBJ..... 1.000000 UC...256 -3049.000000
|
|
1311
|
+
y....257 OBJ..... 1.000000 UC...257 -3049.000000
|
|
1312
|
+
y....258 OBJ..... 1.000000 UC...258 -3049.000000
|
|
1313
|
+
y....259 OBJ..... 1.000000 UC...259 -3049.000000
|
|
1314
|
+
y....260 OBJ..... 1.000000 UC...260 -3049.000000
|
|
1315
|
+
y....261 OBJ..... 1.000000 UC...261 -3049.000000
|
|
1316
|
+
y....262 OBJ..... 1.000000 UC...262 -3049.000000
|
|
1317
|
+
y....263 OBJ..... 1.000000 UC...263 -3049.000000
|
|
1318
|
+
y....264 OBJ..... 1.000000 UC...264 -3049.000000
|
|
1319
|
+
y....265 OBJ..... 1.000000 UC...265 -3049.000000
|
|
1320
|
+
y....266 OBJ..... 1.000000 UC...266 -3049.000000
|
|
1321
|
+
y....267 OBJ..... 1.000000 UC...267 -3049.000000
|
|
1322
|
+
y....268 OBJ..... 1.000000 UC...268 -3049.000000
|
|
1323
|
+
y....269 OBJ..... 1.000000 UC...269 -3049.000000
|
|
1324
|
+
y....270 OBJ..... 1.000000 UC...270 -3049.000000
|
|
1325
|
+
y....271 OBJ..... 1.000000 UC...271 -3049.000000
|
|
1326
|
+
y....272 OBJ..... 1.000000 UC...272 -3049.000000
|
|
1327
|
+
y....273 OBJ..... 1.000000 UC...273 -3049.000000
|
|
1328
|
+
y....274 OBJ..... 1.000000 UC...274 -3049.000000
|
|
1329
|
+
y....275 OBJ..... 1.000000 UC...275 -3049.000000
|
|
1330
|
+
y....276 OBJ..... 1.000000 UC...276 -3049.000000
|
|
1331
|
+
y....277 OBJ..... 1.000000 UC...277 -3049.000000
|
|
1332
|
+
y....278 OBJ..... 1.000000 UC...278 -3049.000000
|
|
1333
|
+
y....279 OBJ..... 1.000000 UC...279 -3049.000000
|
|
1334
|
+
y....280 OBJ..... 1.000000 UC...280 -3049.000000
|
|
1335
|
+
y....281 OBJ..... 1.000000 UC...281 -3049.000000
|
|
1336
|
+
y....282 OBJ..... 1.000000 UC...282 -3049.000000
|
|
1337
|
+
y....283 OBJ..... 1.000000 UC...283 -3049.000000
|
|
1338
|
+
y....284 OBJ..... 1.000000 UC...284 -3049.000000
|
|
1339
|
+
y....285 OBJ..... 1.000000 UC...285 -3049.000000
|
|
1340
|
+
y....286 OBJ..... 1.000000 UC...286 -3049.000000
|
|
1341
|
+
y....287 OBJ..... 1.000000 UC...287 -3049.000000
|
|
1342
|
+
y....288 OBJ..... 1.000000 UC...288 -3049.000000
|
|
1343
|
+
y....289 OBJ..... 1.000000 UC...289 -3049.000000
|
|
1344
|
+
y....290 OBJ..... 1.000000 UC...290 -3049.000000
|
|
1345
|
+
y....291 OBJ..... 1.000000 UC...291 -3049.000000
|
|
1346
|
+
y....292 OBJ..... 1.000000 UC...292 -3049.000000
|
|
1347
|
+
y....293 OBJ..... 1.000000 UC...293 -3049.000000
|
|
1348
|
+
y....294 OBJ..... 1.000000 UC...294 -3049.000000
|
|
1349
|
+
y....295 OBJ..... 1.000000 UC...295 -3049.000000
|
|
1350
|
+
y....296 OBJ..... 1.000000 UC...296 -3049.000000
|
|
1351
|
+
y....297 OBJ..... 1.000000 UC...297 -3049.000000
|
|
1352
|
+
y....298 OBJ..... 1.000000 UC...298 -3049.000000
|
|
1353
|
+
y....299 OBJ..... 1.000000 UC...299 -3049.000000
|
|
1354
|
+
y....300 OBJ..... 1.000000 UC...300 -3049.000000
|
|
1355
|
+
RHS
|
|
1356
|
+
RHS00001 CNS..001 1914.000000 CNS..002 -1348.000000
|
|
1357
|
+
RHS00001 CNS..003 543.000000 CNS..004 138.000000
|
|
1358
|
+
RHS00001 CNS..005 42.000000 CNS..006 33.000000
|
|
1359
|
+
RHS00001 CNS..007 3.000000 CNS..008 -2.000000
|
|
1360
|
+
RHS00001 CNS..009 1.000000 CNS..014 2.000000
|
|
1361
|
+
RHS00001 CNS..015 -50.000000 CNS..017 1.000000
|
|
1362
|
+
RHS00001 CNS..021 -20.000000 CNS..023 50.000000
|
|
1363
|
+
RHS00001 CNS..024 -6.000000 CNS..030 -495.000000
|
|
1364
|
+
RHS00001 CNS..031 1.000000 CNS..033 1.000000
|
|
1365
|
+
RHS00001 CNS..039 1.000000 CNS..040 -82.000000
|
|
1366
|
+
RHS00001 CNS..043 -1.000000 CNS..044 -1.000000
|
|
1367
|
+
RHS00001 CNS..058 -5.000000 CNS..064 -1.000000
|
|
1368
|
+
RHS00001 CNS..074 86.000000 CNS..075 -464.000000
|
|
1369
|
+
RHS00001 CNS..076 1.000000 CNS..077 2.000000
|
|
1370
|
+
RHS00001 CNS..078 44.000000 CNS..079 2.000000
|
|
1371
|
+
RHS00001 CNS..080 -121.000000 CNS..081 1.000000
|
|
1372
|
+
RHS00001 CNS..088 11.000000 CNS..097 1.000000
|
|
1373
|
+
RHS00001 CNS..101 -8.000000 CNS..107 -22.000000
|
|
1374
|
+
RHS00001 CNS..108 1.000000 CNS..110 1.000000
|
|
1375
|
+
RHS00001 CNS..112 1.000000 CNS..115 85.000000
|
|
1376
|
+
RHS00001 CNS..120 -272.000000 CNS..123 25.000000
|
|
1377
|
+
RHS00001 CNS..124 11.000000 CNS..125 2.000000
|
|
1378
|
+
RHS00001 CNS..133 33.000000 CNS..136 -1.000000
|
|
1379
|
+
RHS00001 CNS..137 1.000000 CNS..140 -150.000000
|
|
1380
|
+
RHS00001 CNS..141 7.000000 CNS..142 2.000000
|
|
1381
|
+
RHS00001 CNS..143 2.000000
|
|
1382
|
+
BOUNDS
|
|
1383
|
+
UP BOUND001 x....001 3049.000000
|
|
1384
|
+
UP BOUND001 x....002 3049.000000
|
|
1385
|
+
UP BOUND001 x....003 3049.000000
|
|
1386
|
+
UP BOUND001 x....004 3049.000000
|
|
1387
|
+
UP BOUND001 x....005 3049.000000
|
|
1388
|
+
UP BOUND001 x....006 3049.000000
|
|
1389
|
+
UP BOUND001 x....007 3049.000000
|
|
1390
|
+
UP BOUND001 x....008 3049.000000
|
|
1391
|
+
UP BOUND001 x....009 3049.000000
|
|
1392
|
+
UP BOUND001 x....010 3049.000000
|
|
1393
|
+
UP BOUND001 x....011 3049.000000
|
|
1394
|
+
UP BOUND001 x....012 3049.000000
|
|
1395
|
+
UP BOUND001 x....013 3049.000000
|
|
1396
|
+
UP BOUND001 x....014 3049.000000
|
|
1397
|
+
UP BOUND001 x....015 3049.000000
|
|
1398
|
+
UP BOUND001 x....016 3049.000000
|
|
1399
|
+
UP BOUND001 x....017 3049.000000
|
|
1400
|
+
UP BOUND001 x....018 3049.000000
|
|
1401
|
+
UP BOUND001 x....019 3049.000000
|
|
1402
|
+
UP BOUND001 x....020 3049.000000
|
|
1403
|
+
UP BOUND001 x....021 3049.000000
|
|
1404
|
+
UP BOUND001 x....022 3049.000000
|
|
1405
|
+
UP BOUND001 x....023 3049.000000
|
|
1406
|
+
UP BOUND001 x....024 3049.000000
|
|
1407
|
+
UP BOUND001 x....025 3049.000000
|
|
1408
|
+
UP BOUND001 x....026 3049.000000
|
|
1409
|
+
UP BOUND001 x....027 3049.000000
|
|
1410
|
+
UP BOUND001 x....028 3049.000000
|
|
1411
|
+
UP BOUND001 x....029 3049.000000
|
|
1412
|
+
UP BOUND001 x....030 3049.000000
|
|
1413
|
+
UP BOUND001 x....031 3049.000000
|
|
1414
|
+
UP BOUND001 x....032 3049.000000
|
|
1415
|
+
UP BOUND001 x....033 3049.000000
|
|
1416
|
+
UP BOUND001 x....034 3049.000000
|
|
1417
|
+
UP BOUND001 x....035 3049.000000
|
|
1418
|
+
UP BOUND001 x....036 3049.000000
|
|
1419
|
+
UP BOUND001 x....037 3049.000000
|
|
1420
|
+
UP BOUND001 x....038 3049.000000
|
|
1421
|
+
UP BOUND001 x....039 3049.000000
|
|
1422
|
+
UP BOUND001 x....040 3049.000000
|
|
1423
|
+
UP BOUND001 x....041 3049.000000
|
|
1424
|
+
UP BOUND001 x....042 3049.000000
|
|
1425
|
+
UP BOUND001 x....043 3049.000000
|
|
1426
|
+
UP BOUND001 x....044 3049.000000
|
|
1427
|
+
UP BOUND001 x....045 3049.000000
|
|
1428
|
+
UP BOUND001 x....046 3049.000000
|
|
1429
|
+
UP BOUND001 x....047 3049.000000
|
|
1430
|
+
UP BOUND001 x....048 3049.000000
|
|
1431
|
+
UP BOUND001 x....049 3049.000000
|
|
1432
|
+
UP BOUND001 x....050 3049.000000
|
|
1433
|
+
UP BOUND001 x....051 3049.000000
|
|
1434
|
+
UP BOUND001 x....052 3049.000000
|
|
1435
|
+
UP BOUND001 x....053 3049.000000
|
|
1436
|
+
UP BOUND001 x....054 3049.000000
|
|
1437
|
+
UP BOUND001 x....055 3049.000000
|
|
1438
|
+
UP BOUND001 x....056 3049.000000
|
|
1439
|
+
UP BOUND001 x....057 3049.000000
|
|
1440
|
+
UP BOUND001 x....058 3049.000000
|
|
1441
|
+
UP BOUND001 x....059 3049.000000
|
|
1442
|
+
UP BOUND001 x....060 3049.000000
|
|
1443
|
+
UP BOUND001 x....061 3049.000000
|
|
1444
|
+
UP BOUND001 x....062 3049.000000
|
|
1445
|
+
UP BOUND001 x....063 3049.000000
|
|
1446
|
+
UP BOUND001 x....064 3049.000000
|
|
1447
|
+
UP BOUND001 x....065 3049.000000
|
|
1448
|
+
UP BOUND001 x....066 3049.000000
|
|
1449
|
+
UP BOUND001 x....067 3049.000000
|
|
1450
|
+
UP BOUND001 x....068 3049.000000
|
|
1451
|
+
UP BOUND001 x....069 3049.000000
|
|
1452
|
+
UP BOUND001 x....070 3049.000000
|
|
1453
|
+
UP BOUND001 x....071 3049.000000
|
|
1454
|
+
UP BOUND001 x....072 3049.000000
|
|
1455
|
+
UP BOUND001 x....073 3049.000000
|
|
1456
|
+
UP BOUND001 x....074 3049.000000
|
|
1457
|
+
UP BOUND001 x....075 3049.000000
|
|
1458
|
+
UP BOUND001 x....076 3049.000000
|
|
1459
|
+
UP BOUND001 x....077 3049.000000
|
|
1460
|
+
UP BOUND001 x....078 3049.000000
|
|
1461
|
+
UP BOUND001 x....079 3049.000000
|
|
1462
|
+
UP BOUND001 x....080 3049.000000
|
|
1463
|
+
UP BOUND001 x....081 3049.000000
|
|
1464
|
+
UP BOUND001 x....082 3049.000000
|
|
1465
|
+
UP BOUND001 x....083 3049.000000
|
|
1466
|
+
UP BOUND001 x....084 3049.000000
|
|
1467
|
+
UP BOUND001 x....085 3049.000000
|
|
1468
|
+
UP BOUND001 x....086 3049.000000
|
|
1469
|
+
UP BOUND001 x....087 3049.000000
|
|
1470
|
+
UP BOUND001 x....088 3049.000000
|
|
1471
|
+
UP BOUND001 x....089 3049.000000
|
|
1472
|
+
UP BOUND001 x....090 3049.000000
|
|
1473
|
+
UP BOUND001 x....091 3049.000000
|
|
1474
|
+
UP BOUND001 x....092 3049.000000
|
|
1475
|
+
UP BOUND001 x....093 3049.000000
|
|
1476
|
+
UP BOUND001 x....094 3049.000000
|
|
1477
|
+
UP BOUND001 x....095 3049.000000
|
|
1478
|
+
UP BOUND001 x....096 3049.000000
|
|
1479
|
+
UP BOUND001 x....097 3049.000000
|
|
1480
|
+
UP BOUND001 x....098 3049.000000
|
|
1481
|
+
UP BOUND001 x....099 3049.000000
|
|
1482
|
+
UP BOUND001 x....100 3049.000000
|
|
1483
|
+
UP BOUND001 x....101 3049.000000
|
|
1484
|
+
UP BOUND001 x....102 3049.000000
|
|
1485
|
+
UP BOUND001 x....103 3049.000000
|
|
1486
|
+
UP BOUND001 x....104 3049.000000
|
|
1487
|
+
UP BOUND001 x....105 3049.000000
|
|
1488
|
+
UP BOUND001 x....106 3049.000000
|
|
1489
|
+
UP BOUND001 x....107 3049.000000
|
|
1490
|
+
UP BOUND001 x....108 3049.000000
|
|
1491
|
+
UP BOUND001 x....109 3049.000000
|
|
1492
|
+
UP BOUND001 x....110 3049.000000
|
|
1493
|
+
UP BOUND001 x....111 3049.000000
|
|
1494
|
+
UP BOUND001 x....112 3049.000000
|
|
1495
|
+
UP BOUND001 x....113 3049.000000
|
|
1496
|
+
UP BOUND001 x....114 3049.000000
|
|
1497
|
+
UP BOUND001 x....115 3049.000000
|
|
1498
|
+
UP BOUND001 x....116 3049.000000
|
|
1499
|
+
UP BOUND001 x....117 3049.000000
|
|
1500
|
+
UP BOUND001 x....118 3049.000000
|
|
1501
|
+
UP BOUND001 x....119 3049.000000
|
|
1502
|
+
UP BOUND001 x....120 3049.000000
|
|
1503
|
+
UP BOUND001 x....121 3049.000000
|
|
1504
|
+
UP BOUND001 x....122 3049.000000
|
|
1505
|
+
UP BOUND001 x....123 3049.000000
|
|
1506
|
+
UP BOUND001 x....124 3049.000000
|
|
1507
|
+
UP BOUND001 x....125 3049.000000
|
|
1508
|
+
UP BOUND001 x....126 3049.000000
|
|
1509
|
+
UP BOUND001 x....127 3049.000000
|
|
1510
|
+
UP BOUND001 x....128 3049.000000
|
|
1511
|
+
UP BOUND001 x....129 3049.000000
|
|
1512
|
+
UP BOUND001 x....130 3049.000000
|
|
1513
|
+
UP BOUND001 x....131 3049.000000
|
|
1514
|
+
UP BOUND001 x....132 3049.000000
|
|
1515
|
+
UP BOUND001 x....133 3049.000000
|
|
1516
|
+
UP BOUND001 x....134 3049.000000
|
|
1517
|
+
UP BOUND001 x....135 3049.000000
|
|
1518
|
+
UP BOUND001 x....136 3049.000000
|
|
1519
|
+
UP BOUND001 x....137 3049.000000
|
|
1520
|
+
UP BOUND001 x....138 3049.000000
|
|
1521
|
+
UP BOUND001 x....139 3049.000000
|
|
1522
|
+
UP BOUND001 x....140 3049.000000
|
|
1523
|
+
UP BOUND001 x....141 3049.000000
|
|
1524
|
+
UP BOUND001 x....142 3049.000000
|
|
1525
|
+
UP BOUND001 x....143 3049.000000
|
|
1526
|
+
UP BOUND001 x....144 3049.000000
|
|
1527
|
+
UP BOUND001 x....145 3049.000000
|
|
1528
|
+
UP BOUND001 x....146 3049.000000
|
|
1529
|
+
UP BOUND001 x....147 3049.000000
|
|
1530
|
+
UP BOUND001 x....148 3049.000000
|
|
1531
|
+
UP BOUND001 x....149 3049.000000
|
|
1532
|
+
UP BOUND001 x....150 3049.000000
|
|
1533
|
+
UP BOUND001 x....151 3049.000000
|
|
1534
|
+
UP BOUND001 x....152 3049.000000
|
|
1535
|
+
UP BOUND001 x....153 3049.000000
|
|
1536
|
+
UP BOUND001 x....154 3049.000000
|
|
1537
|
+
UP BOUND001 x....155 3049.000000
|
|
1538
|
+
UP BOUND001 x....156 3049.000000
|
|
1539
|
+
UP BOUND001 x....157 3049.000000
|
|
1540
|
+
UP BOUND001 x....158 3049.000000
|
|
1541
|
+
UP BOUND001 x....159 3049.000000
|
|
1542
|
+
UP BOUND001 x....160 3049.000000
|
|
1543
|
+
UP BOUND001 x....161 3049.000000
|
|
1544
|
+
UP BOUND001 x....162 3049.000000
|
|
1545
|
+
UP BOUND001 x....163 3049.000000
|
|
1546
|
+
UP BOUND001 x....164 3049.000000
|
|
1547
|
+
UP BOUND001 x....165 3049.000000
|
|
1548
|
+
UP BOUND001 x....166 3049.000000
|
|
1549
|
+
UP BOUND001 x....167 3049.000000
|
|
1550
|
+
UP BOUND001 x....168 3049.000000
|
|
1551
|
+
UP BOUND001 x....169 3049.000000
|
|
1552
|
+
UP BOUND001 x....170 3049.000000
|
|
1553
|
+
UP BOUND001 x....171 3049.000000
|
|
1554
|
+
UP BOUND001 x....172 3049.000000
|
|
1555
|
+
UP BOUND001 x....173 3049.000000
|
|
1556
|
+
UP BOUND001 x....174 3049.000000
|
|
1557
|
+
UP BOUND001 x....175 3049.000000
|
|
1558
|
+
UP BOUND001 x....176 3049.000000
|
|
1559
|
+
UP BOUND001 x....177 3049.000000
|
|
1560
|
+
UP BOUND001 x....178 3049.000000
|
|
1561
|
+
UP BOUND001 x....179 3049.000000
|
|
1562
|
+
UP BOUND001 x....180 3049.000000
|
|
1563
|
+
UP BOUND001 x....181 3049.000000
|
|
1564
|
+
UP BOUND001 x....182 3049.000000
|
|
1565
|
+
UP BOUND001 x....183 3049.000000
|
|
1566
|
+
UP BOUND001 x....184 3049.000000
|
|
1567
|
+
UP BOUND001 x....185 3049.000000
|
|
1568
|
+
UP BOUND001 x....186 3049.000000
|
|
1569
|
+
UP BOUND001 x....187 3049.000000
|
|
1570
|
+
UP BOUND001 x....188 3049.000000
|
|
1571
|
+
UP BOUND001 x....189 3049.000000
|
|
1572
|
+
UP BOUND001 x....190 3049.000000
|
|
1573
|
+
UP BOUND001 x....191 3049.000000
|
|
1574
|
+
UP BOUND001 x....192 3049.000000
|
|
1575
|
+
UP BOUND001 x....193 3049.000000
|
|
1576
|
+
UP BOUND001 x....194 3049.000000
|
|
1577
|
+
UP BOUND001 x....195 3049.000000
|
|
1578
|
+
UP BOUND001 x....196 3049.000000
|
|
1579
|
+
UP BOUND001 x....197 3049.000000
|
|
1580
|
+
UP BOUND001 x....198 3049.000000
|
|
1581
|
+
UP BOUND001 x....199 3049.000000
|
|
1582
|
+
UP BOUND001 x....200 3049.000000
|
|
1583
|
+
UP BOUND001 x....201 3049.000000
|
|
1584
|
+
UP BOUND001 x....202 3049.000000
|
|
1585
|
+
UP BOUND001 x....203 3049.000000
|
|
1586
|
+
UP BOUND001 x....204 3049.000000
|
|
1587
|
+
UP BOUND001 x....205 3049.000000
|
|
1588
|
+
UP BOUND001 x....206 3049.000000
|
|
1589
|
+
UP BOUND001 x....207 3049.000000
|
|
1590
|
+
UP BOUND001 x....208 3049.000000
|
|
1591
|
+
UP BOUND001 x....209 3049.000000
|
|
1592
|
+
UP BOUND001 x....210 3049.000000
|
|
1593
|
+
UP BOUND001 x....211 3049.000000
|
|
1594
|
+
UP BOUND001 x....212 3049.000000
|
|
1595
|
+
UP BOUND001 x....213 3049.000000
|
|
1596
|
+
UP BOUND001 x....214 3049.000000
|
|
1597
|
+
UP BOUND001 x....215 3049.000000
|
|
1598
|
+
UP BOUND001 x....216 3049.000000
|
|
1599
|
+
UP BOUND001 x....217 3049.000000
|
|
1600
|
+
UP BOUND001 x....218 3049.000000
|
|
1601
|
+
UP BOUND001 x....219 3049.000000
|
|
1602
|
+
UP BOUND001 x....220 3049.000000
|
|
1603
|
+
UP BOUND001 x....221 3049.000000
|
|
1604
|
+
UP BOUND001 x....222 3049.000000
|
|
1605
|
+
UP BOUND001 x....223 3049.000000
|
|
1606
|
+
UP BOUND001 x....224 3049.000000
|
|
1607
|
+
UP BOUND001 x....225 3049.000000
|
|
1608
|
+
UP BOUND001 x....226 3049.000000
|
|
1609
|
+
UP BOUND001 x....227 3049.000000
|
|
1610
|
+
UP BOUND001 x....228 3049.000000
|
|
1611
|
+
UP BOUND001 x....229 3049.000000
|
|
1612
|
+
UP BOUND001 x....230 3049.000000
|
|
1613
|
+
UP BOUND001 x....231 3049.000000
|
|
1614
|
+
UP BOUND001 x....232 3049.000000
|
|
1615
|
+
UP BOUND001 x....233 3049.000000
|
|
1616
|
+
UP BOUND001 x....234 3049.000000
|
|
1617
|
+
UP BOUND001 x....235 3049.000000
|
|
1618
|
+
UP BOUND001 x....236 3049.000000
|
|
1619
|
+
UP BOUND001 x....237 3049.000000
|
|
1620
|
+
UP BOUND001 x....238 3049.000000
|
|
1621
|
+
UP BOUND001 x....239 3049.000000
|
|
1622
|
+
UP BOUND001 x....240 3049.000000
|
|
1623
|
+
UP BOUND001 x....241 3049.000000
|
|
1624
|
+
UP BOUND001 x....242 3049.000000
|
|
1625
|
+
UP BOUND001 x....243 3049.000000
|
|
1626
|
+
UP BOUND001 x....244 3049.000000
|
|
1627
|
+
UP BOUND001 x....245 3049.000000
|
|
1628
|
+
UP BOUND001 x....246 3049.000000
|
|
1629
|
+
UP BOUND001 x....247 3049.000000
|
|
1630
|
+
UP BOUND001 x....248 3049.000000
|
|
1631
|
+
UP BOUND001 x....249 3049.000000
|
|
1632
|
+
UP BOUND001 x....250 3049.000000
|
|
1633
|
+
UP BOUND001 x....251 3049.000000
|
|
1634
|
+
UP BOUND001 x....252 3049.000000
|
|
1635
|
+
UP BOUND001 x....253 3049.000000
|
|
1636
|
+
UP BOUND001 x....254 3049.000000
|
|
1637
|
+
UP BOUND001 x....255 3049.000000
|
|
1638
|
+
UP BOUND001 x....256 3049.000000
|
|
1639
|
+
UP BOUND001 x....257 3049.000000
|
|
1640
|
+
UP BOUND001 x....258 3049.000000
|
|
1641
|
+
UP BOUND001 x....259 3049.000000
|
|
1642
|
+
UP BOUND001 x....260 3049.000000
|
|
1643
|
+
UP BOUND001 x....261 3049.000000
|
|
1644
|
+
UP BOUND001 x....262 3049.000000
|
|
1645
|
+
UP BOUND001 x....263 3049.000000
|
|
1646
|
+
UP BOUND001 x....264 3049.000000
|
|
1647
|
+
UP BOUND001 x....265 3049.000000
|
|
1648
|
+
UP BOUND001 x....266 3049.000000
|
|
1649
|
+
UP BOUND001 x....267 3049.000000
|
|
1650
|
+
UP BOUND001 x....268 3049.000000
|
|
1651
|
+
UP BOUND001 x....269 3049.000000
|
|
1652
|
+
UP BOUND001 x....270 3049.000000
|
|
1653
|
+
UP BOUND001 x....271 3049.000000
|
|
1654
|
+
UP BOUND001 x....272 3049.000000
|
|
1655
|
+
UP BOUND001 x....273 3049.000000
|
|
1656
|
+
UP BOUND001 x....274 3049.000000
|
|
1657
|
+
UP BOUND001 x....275 3049.000000
|
|
1658
|
+
UP BOUND001 x....276 3049.000000
|
|
1659
|
+
UP BOUND001 x....277 3049.000000
|
|
1660
|
+
UP BOUND001 x....278 3049.000000
|
|
1661
|
+
UP BOUND001 x....279 3049.000000
|
|
1662
|
+
UP BOUND001 x....280 3049.000000
|
|
1663
|
+
UP BOUND001 x....281 3049.000000
|
|
1664
|
+
UP BOUND001 x....282 3049.000000
|
|
1665
|
+
UP BOUND001 x....283 3049.000000
|
|
1666
|
+
UP BOUND001 x....284 3049.000000
|
|
1667
|
+
UP BOUND001 x....285 3049.000000
|
|
1668
|
+
UP BOUND001 x....286 3049.000000
|
|
1669
|
+
UP BOUND001 x....287 3049.000000
|
|
1670
|
+
UP BOUND001 x....288 3049.000000
|
|
1671
|
+
UP BOUND001 x....289 3049.000000
|
|
1672
|
+
UP BOUND001 x....290 3049.000000
|
|
1673
|
+
UP BOUND001 x....291 3049.000000
|
|
1674
|
+
UP BOUND001 x....292 3049.000000
|
|
1675
|
+
UP BOUND001 x....293 3049.000000
|
|
1676
|
+
UP BOUND001 x....294 3049.000000
|
|
1677
|
+
UP BOUND001 x....295 3049.000000
|
|
1678
|
+
UP BOUND001 x....296 3049.000000
|
|
1679
|
+
UP BOUND001 x....297 3049.000000
|
|
1680
|
+
UP BOUND001 x....298 3049.000000
|
|
1681
|
+
UP BOUND001 x....299 3049.000000
|
|
1682
|
+
UP BOUND001 x....300 3049.000000
|
|
1683
|
+
BV BOUND001 y....001
|
|
1684
|
+
BV BOUND001 y....002
|
|
1685
|
+
BV BOUND001 y....003
|
|
1686
|
+
BV BOUND001 y....004
|
|
1687
|
+
BV BOUND001 y....005
|
|
1688
|
+
BV BOUND001 y....006
|
|
1689
|
+
BV BOUND001 y....007
|
|
1690
|
+
BV BOUND001 y....008
|
|
1691
|
+
BV BOUND001 y....009
|
|
1692
|
+
BV BOUND001 y....010
|
|
1693
|
+
BV BOUND001 y....011
|
|
1694
|
+
BV BOUND001 y....012
|
|
1695
|
+
BV BOUND001 y....013
|
|
1696
|
+
BV BOUND001 y....014
|
|
1697
|
+
BV BOUND001 y....015
|
|
1698
|
+
BV BOUND001 y....016
|
|
1699
|
+
BV BOUND001 y....017
|
|
1700
|
+
BV BOUND001 y....018
|
|
1701
|
+
BV BOUND001 y....019
|
|
1702
|
+
BV BOUND001 y....020
|
|
1703
|
+
BV BOUND001 y....021
|
|
1704
|
+
BV BOUND001 y....022
|
|
1705
|
+
BV BOUND001 y....023
|
|
1706
|
+
BV BOUND001 y....024
|
|
1707
|
+
BV BOUND001 y....025
|
|
1708
|
+
BV BOUND001 y....026
|
|
1709
|
+
BV BOUND001 y....027
|
|
1710
|
+
BV BOUND001 y....028
|
|
1711
|
+
BV BOUND001 y....029
|
|
1712
|
+
BV BOUND001 y....030
|
|
1713
|
+
BV BOUND001 y....031
|
|
1714
|
+
BV BOUND001 y....032
|
|
1715
|
+
BV BOUND001 y....033
|
|
1716
|
+
BV BOUND001 y....034
|
|
1717
|
+
BV BOUND001 y....035
|
|
1718
|
+
BV BOUND001 y....036
|
|
1719
|
+
BV BOUND001 y....037
|
|
1720
|
+
BV BOUND001 y....038
|
|
1721
|
+
BV BOUND001 y....039
|
|
1722
|
+
BV BOUND001 y....040
|
|
1723
|
+
BV BOUND001 y....041
|
|
1724
|
+
BV BOUND001 y....042
|
|
1725
|
+
BV BOUND001 y....043
|
|
1726
|
+
BV BOUND001 y....044
|
|
1727
|
+
BV BOUND001 y....045
|
|
1728
|
+
BV BOUND001 y....046
|
|
1729
|
+
BV BOUND001 y....047
|
|
1730
|
+
BV BOUND001 y....048
|
|
1731
|
+
BV BOUND001 y....049
|
|
1732
|
+
BV BOUND001 y....050
|
|
1733
|
+
BV BOUND001 y....051
|
|
1734
|
+
BV BOUND001 y....052
|
|
1735
|
+
BV BOUND001 y....053
|
|
1736
|
+
BV BOUND001 y....054
|
|
1737
|
+
BV BOUND001 y....055
|
|
1738
|
+
BV BOUND001 y....056
|
|
1739
|
+
BV BOUND001 y....057
|
|
1740
|
+
BV BOUND001 y....058
|
|
1741
|
+
BV BOUND001 y....059
|
|
1742
|
+
BV BOUND001 y....060
|
|
1743
|
+
BV BOUND001 y....061
|
|
1744
|
+
BV BOUND001 y....062
|
|
1745
|
+
BV BOUND001 y....063
|
|
1746
|
+
BV BOUND001 y....064
|
|
1747
|
+
BV BOUND001 y....065
|
|
1748
|
+
BV BOUND001 y....066
|
|
1749
|
+
BV BOUND001 y....067
|
|
1750
|
+
BV BOUND001 y....068
|
|
1751
|
+
BV BOUND001 y....069
|
|
1752
|
+
BV BOUND001 y....070
|
|
1753
|
+
BV BOUND001 y....071
|
|
1754
|
+
BV BOUND001 y....072
|
|
1755
|
+
BV BOUND001 y....073
|
|
1756
|
+
BV BOUND001 y....074
|
|
1757
|
+
BV BOUND001 y....075
|
|
1758
|
+
BV BOUND001 y....076
|
|
1759
|
+
BV BOUND001 y....077
|
|
1760
|
+
BV BOUND001 y....078
|
|
1761
|
+
BV BOUND001 y....079
|
|
1762
|
+
BV BOUND001 y....080
|
|
1763
|
+
BV BOUND001 y....081
|
|
1764
|
+
BV BOUND001 y....082
|
|
1765
|
+
BV BOUND001 y....083
|
|
1766
|
+
BV BOUND001 y....084
|
|
1767
|
+
BV BOUND001 y....085
|
|
1768
|
+
BV BOUND001 y....086
|
|
1769
|
+
BV BOUND001 y....087
|
|
1770
|
+
BV BOUND001 y....088
|
|
1771
|
+
BV BOUND001 y....089
|
|
1772
|
+
BV BOUND001 y....090
|
|
1773
|
+
BV BOUND001 y....091
|
|
1774
|
+
BV BOUND001 y....092
|
|
1775
|
+
BV BOUND001 y....093
|
|
1776
|
+
BV BOUND001 y....094
|
|
1777
|
+
BV BOUND001 y....095
|
|
1778
|
+
BV BOUND001 y....096
|
|
1779
|
+
BV BOUND001 y....097
|
|
1780
|
+
BV BOUND001 y....098
|
|
1781
|
+
BV BOUND001 y....099
|
|
1782
|
+
BV BOUND001 y....100
|
|
1783
|
+
BV BOUND001 y....101
|
|
1784
|
+
BV BOUND001 y....102
|
|
1785
|
+
BV BOUND001 y....103
|
|
1786
|
+
BV BOUND001 y....104
|
|
1787
|
+
BV BOUND001 y....105
|
|
1788
|
+
BV BOUND001 y....106
|
|
1789
|
+
BV BOUND001 y....107
|
|
1790
|
+
BV BOUND001 y....108
|
|
1791
|
+
BV BOUND001 y....109
|
|
1792
|
+
BV BOUND001 y....110
|
|
1793
|
+
BV BOUND001 y....111
|
|
1794
|
+
BV BOUND001 y....112
|
|
1795
|
+
BV BOUND001 y....113
|
|
1796
|
+
BV BOUND001 y....114
|
|
1797
|
+
BV BOUND001 y....115
|
|
1798
|
+
BV BOUND001 y....116
|
|
1799
|
+
BV BOUND001 y....117
|
|
1800
|
+
BV BOUND001 y....118
|
|
1801
|
+
BV BOUND001 y....119
|
|
1802
|
+
BV BOUND001 y....120
|
|
1803
|
+
BV BOUND001 y....121
|
|
1804
|
+
BV BOUND001 y....122
|
|
1805
|
+
BV BOUND001 y....123
|
|
1806
|
+
BV BOUND001 y....124
|
|
1807
|
+
BV BOUND001 y....125
|
|
1808
|
+
BV BOUND001 y....126
|
|
1809
|
+
BV BOUND001 y....127
|
|
1810
|
+
BV BOUND001 y....128
|
|
1811
|
+
BV BOUND001 y....129
|
|
1812
|
+
BV BOUND001 y....130
|
|
1813
|
+
BV BOUND001 y....131
|
|
1814
|
+
BV BOUND001 y....132
|
|
1815
|
+
BV BOUND001 y....133
|
|
1816
|
+
BV BOUND001 y....134
|
|
1817
|
+
BV BOUND001 y....135
|
|
1818
|
+
BV BOUND001 y....136
|
|
1819
|
+
BV BOUND001 y....137
|
|
1820
|
+
BV BOUND001 y....138
|
|
1821
|
+
BV BOUND001 y....139
|
|
1822
|
+
BV BOUND001 y....140
|
|
1823
|
+
BV BOUND001 y....141
|
|
1824
|
+
BV BOUND001 y....142
|
|
1825
|
+
BV BOUND001 y....143
|
|
1826
|
+
BV BOUND001 y....144
|
|
1827
|
+
BV BOUND001 y....145
|
|
1828
|
+
BV BOUND001 y....146
|
|
1829
|
+
BV BOUND001 y....147
|
|
1830
|
+
BV BOUND001 y....148
|
|
1831
|
+
BV BOUND001 y....149
|
|
1832
|
+
BV BOUND001 y....150
|
|
1833
|
+
BV BOUND001 y....151
|
|
1834
|
+
BV BOUND001 y....152
|
|
1835
|
+
BV BOUND001 y....153
|
|
1836
|
+
BV BOUND001 y....154
|
|
1837
|
+
BV BOUND001 y....155
|
|
1838
|
+
BV BOUND001 y....156
|
|
1839
|
+
BV BOUND001 y....157
|
|
1840
|
+
BV BOUND001 y....158
|
|
1841
|
+
BV BOUND001 y....159
|
|
1842
|
+
BV BOUND001 y....160
|
|
1843
|
+
BV BOUND001 y....161
|
|
1844
|
+
BV BOUND001 y....162
|
|
1845
|
+
BV BOUND001 y....163
|
|
1846
|
+
BV BOUND001 y....164
|
|
1847
|
+
BV BOUND001 y....165
|
|
1848
|
+
BV BOUND001 y....166
|
|
1849
|
+
BV BOUND001 y....167
|
|
1850
|
+
BV BOUND001 y....168
|
|
1851
|
+
BV BOUND001 y....169
|
|
1852
|
+
BV BOUND001 y....170
|
|
1853
|
+
BV BOUND001 y....171
|
|
1854
|
+
BV BOUND001 y....172
|
|
1855
|
+
BV BOUND001 y....173
|
|
1856
|
+
BV BOUND001 y....174
|
|
1857
|
+
BV BOUND001 y....175
|
|
1858
|
+
BV BOUND001 y....176
|
|
1859
|
+
BV BOUND001 y....177
|
|
1860
|
+
BV BOUND001 y....178
|
|
1861
|
+
BV BOUND001 y....179
|
|
1862
|
+
BV BOUND001 y....180
|
|
1863
|
+
BV BOUND001 y....181
|
|
1864
|
+
BV BOUND001 y....182
|
|
1865
|
+
BV BOUND001 y....183
|
|
1866
|
+
BV BOUND001 y....184
|
|
1867
|
+
BV BOUND001 y....185
|
|
1868
|
+
BV BOUND001 y....186
|
|
1869
|
+
BV BOUND001 y....187
|
|
1870
|
+
BV BOUND001 y....188
|
|
1871
|
+
BV BOUND001 y....189
|
|
1872
|
+
BV BOUND001 y....190
|
|
1873
|
+
BV BOUND001 y....191
|
|
1874
|
+
BV BOUND001 y....192
|
|
1875
|
+
BV BOUND001 y....193
|
|
1876
|
+
BV BOUND001 y....194
|
|
1877
|
+
BV BOUND001 y....195
|
|
1878
|
+
BV BOUND001 y....196
|
|
1879
|
+
BV BOUND001 y....197
|
|
1880
|
+
BV BOUND001 y....198
|
|
1881
|
+
BV BOUND001 y....199
|
|
1882
|
+
BV BOUND001 y....200
|
|
1883
|
+
BV BOUND001 y....201
|
|
1884
|
+
BV BOUND001 y....202
|
|
1885
|
+
BV BOUND001 y....203
|
|
1886
|
+
BV BOUND001 y....204
|
|
1887
|
+
BV BOUND001 y....205
|
|
1888
|
+
BV BOUND001 y....206
|
|
1889
|
+
BV BOUND001 y....207
|
|
1890
|
+
BV BOUND001 y....208
|
|
1891
|
+
BV BOUND001 y....209
|
|
1892
|
+
BV BOUND001 y....210
|
|
1893
|
+
BV BOUND001 y....211
|
|
1894
|
+
BV BOUND001 y....212
|
|
1895
|
+
BV BOUND001 y....213
|
|
1896
|
+
BV BOUND001 y....214
|
|
1897
|
+
BV BOUND001 y....215
|
|
1898
|
+
BV BOUND001 y....216
|
|
1899
|
+
BV BOUND001 y....217
|
|
1900
|
+
BV BOUND001 y....218
|
|
1901
|
+
BV BOUND001 y....219
|
|
1902
|
+
BV BOUND001 y....220
|
|
1903
|
+
BV BOUND001 y....221
|
|
1904
|
+
BV BOUND001 y....222
|
|
1905
|
+
BV BOUND001 y....223
|
|
1906
|
+
BV BOUND001 y....224
|
|
1907
|
+
BV BOUND001 y....225
|
|
1908
|
+
BV BOUND001 y....226
|
|
1909
|
+
BV BOUND001 y....227
|
|
1910
|
+
BV BOUND001 y....228
|
|
1911
|
+
BV BOUND001 y....229
|
|
1912
|
+
BV BOUND001 y....230
|
|
1913
|
+
BV BOUND001 y....231
|
|
1914
|
+
BV BOUND001 y....232
|
|
1915
|
+
BV BOUND001 y....233
|
|
1916
|
+
BV BOUND001 y....234
|
|
1917
|
+
BV BOUND001 y....235
|
|
1918
|
+
BV BOUND001 y....236
|
|
1919
|
+
BV BOUND001 y....237
|
|
1920
|
+
BV BOUND001 y....238
|
|
1921
|
+
BV BOUND001 y....239
|
|
1922
|
+
BV BOUND001 y....240
|
|
1923
|
+
BV BOUND001 y....241
|
|
1924
|
+
BV BOUND001 y....242
|
|
1925
|
+
BV BOUND001 y....243
|
|
1926
|
+
BV BOUND001 y....244
|
|
1927
|
+
BV BOUND001 y....245
|
|
1928
|
+
BV BOUND001 y....246
|
|
1929
|
+
BV BOUND001 y....247
|
|
1930
|
+
BV BOUND001 y....248
|
|
1931
|
+
BV BOUND001 y....249
|
|
1932
|
+
BV BOUND001 y....250
|
|
1933
|
+
BV BOUND001 y....251
|
|
1934
|
+
BV BOUND001 y....252
|
|
1935
|
+
BV BOUND001 y....253
|
|
1936
|
+
BV BOUND001 y....254
|
|
1937
|
+
BV BOUND001 y....255
|
|
1938
|
+
BV BOUND001 y....256
|
|
1939
|
+
BV BOUND001 y....257
|
|
1940
|
+
BV BOUND001 y....258
|
|
1941
|
+
BV BOUND001 y....259
|
|
1942
|
+
BV BOUND001 y....260
|
|
1943
|
+
BV BOUND001 y....261
|
|
1944
|
+
BV BOUND001 y....262
|
|
1945
|
+
BV BOUND001 y....263
|
|
1946
|
+
BV BOUND001 y....264
|
|
1947
|
+
BV BOUND001 y....265
|
|
1948
|
+
BV BOUND001 y....266
|
|
1949
|
+
BV BOUND001 y....267
|
|
1950
|
+
BV BOUND001 y....268
|
|
1951
|
+
BV BOUND001 y....269
|
|
1952
|
+
BV BOUND001 y....270
|
|
1953
|
+
BV BOUND001 y....271
|
|
1954
|
+
BV BOUND001 y....272
|
|
1955
|
+
BV BOUND001 y....273
|
|
1956
|
+
BV BOUND001 y....274
|
|
1957
|
+
BV BOUND001 y....275
|
|
1958
|
+
BV BOUND001 y....276
|
|
1959
|
+
BV BOUND001 y....277
|
|
1960
|
+
BV BOUND001 y....278
|
|
1961
|
+
BV BOUND001 y....279
|
|
1962
|
+
BV BOUND001 y....280
|
|
1963
|
+
BV BOUND001 y....281
|
|
1964
|
+
BV BOUND001 y....282
|
|
1965
|
+
BV BOUND001 y....283
|
|
1966
|
+
BV BOUND001 y....284
|
|
1967
|
+
BV BOUND001 y....285
|
|
1968
|
+
BV BOUND001 y....286
|
|
1969
|
+
BV BOUND001 y....287
|
|
1970
|
+
BV BOUND001 y....288
|
|
1971
|
+
BV BOUND001 y....289
|
|
1972
|
+
BV BOUND001 y....290
|
|
1973
|
+
BV BOUND001 y....291
|
|
1974
|
+
BV BOUND001 y....292
|
|
1975
|
+
BV BOUND001 y....293
|
|
1976
|
+
BV BOUND001 y....294
|
|
1977
|
+
BV BOUND001 y....295
|
|
1978
|
+
BV BOUND001 y....296
|
|
1979
|
+
BV BOUND001 y....297
|
|
1980
|
+
BV BOUND001 y....298
|
|
1981
|
+
BV BOUND001 y....299
|
|
1982
|
+
BV BOUND001 y....300
|
|
1983
|
+
ENDATA
|