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,1733 @@
|
|
|
1
|
+
NAME E226 SIZE: N=282, M=224, NZ=2860
|
|
2
|
+
ROWS
|
|
3
|
+
N ...000
|
|
4
|
+
L ...010
|
|
5
|
+
E ...011
|
|
6
|
+
L ...012
|
|
7
|
+
E ...013
|
|
8
|
+
E ...014
|
|
9
|
+
E ...015
|
|
10
|
+
E ...016
|
|
11
|
+
L ...017
|
|
12
|
+
L ...018
|
|
13
|
+
L ...019
|
|
14
|
+
L ...020
|
|
15
|
+
L ...021
|
|
16
|
+
L ...022
|
|
17
|
+
L ...023
|
|
18
|
+
L ...024
|
|
19
|
+
L ...025
|
|
20
|
+
E ...026
|
|
21
|
+
L ...027
|
|
22
|
+
E ...028
|
|
23
|
+
L ...029
|
|
24
|
+
L ...030
|
|
25
|
+
L ...031
|
|
26
|
+
E ...032
|
|
27
|
+
L ...033
|
|
28
|
+
L ...034
|
|
29
|
+
L ...035
|
|
30
|
+
L ...036
|
|
31
|
+
L ...037
|
|
32
|
+
L ...038
|
|
33
|
+
L ...039
|
|
34
|
+
L ...040
|
|
35
|
+
L ...041
|
|
36
|
+
L ...042
|
|
37
|
+
L ...043
|
|
38
|
+
L ...044
|
|
39
|
+
L ...045
|
|
40
|
+
E ...046
|
|
41
|
+
L ...047
|
|
42
|
+
L ...048
|
|
43
|
+
L ...049
|
|
44
|
+
L ...050
|
|
45
|
+
L ...051
|
|
46
|
+
L ...052
|
|
47
|
+
L ...053
|
|
48
|
+
L ...054
|
|
49
|
+
L ...055
|
|
50
|
+
L ...056
|
|
51
|
+
L ...057
|
|
52
|
+
L ...058
|
|
53
|
+
L ...059
|
|
54
|
+
L ...060
|
|
55
|
+
L ...120
|
|
56
|
+
L ...133
|
|
57
|
+
L ...134
|
|
58
|
+
L ...135
|
|
59
|
+
L ...136
|
|
60
|
+
L ...137
|
|
61
|
+
L ...138
|
|
62
|
+
L ...139
|
|
63
|
+
L ...140
|
|
64
|
+
L ...141
|
|
65
|
+
L ...142
|
|
66
|
+
L ...143
|
|
67
|
+
L ...144
|
|
68
|
+
L ...145
|
|
69
|
+
L ...146
|
|
70
|
+
E ...147
|
|
71
|
+
L ...148
|
|
72
|
+
L ...149
|
|
73
|
+
L ...150
|
|
74
|
+
L ...151
|
|
75
|
+
L ...152
|
|
76
|
+
L ...153
|
|
77
|
+
L ...154
|
|
78
|
+
L ...155
|
|
79
|
+
E ...156
|
|
80
|
+
E ...157
|
|
81
|
+
L ...158
|
|
82
|
+
L ...159
|
|
83
|
+
L ...160
|
|
84
|
+
L ...161
|
|
85
|
+
L ...162
|
|
86
|
+
L ...163
|
|
87
|
+
E ...164
|
|
88
|
+
E ...165
|
|
89
|
+
E ...166
|
|
90
|
+
L ...167
|
|
91
|
+
L ...168
|
|
92
|
+
L ...169
|
|
93
|
+
L ...170
|
|
94
|
+
L ...171
|
|
95
|
+
L ...172
|
|
96
|
+
L ...173
|
|
97
|
+
L ...174
|
|
98
|
+
L ...175
|
|
99
|
+
E ...176
|
|
100
|
+
E ...177
|
|
101
|
+
E ...178
|
|
102
|
+
L ...179
|
|
103
|
+
L ...180
|
|
104
|
+
E ...181
|
|
105
|
+
L ...182
|
|
106
|
+
L ...183
|
|
107
|
+
E ...184
|
|
108
|
+
L ...185
|
|
109
|
+
L ...186
|
|
110
|
+
E ...187
|
|
111
|
+
E ...188
|
|
112
|
+
L ...189
|
|
113
|
+
L ...190
|
|
114
|
+
G ...191
|
|
115
|
+
L ...192
|
|
116
|
+
L ...193
|
|
117
|
+
L ...194
|
|
118
|
+
L ...195
|
|
119
|
+
L ...196
|
|
120
|
+
L ...197
|
|
121
|
+
L ...198
|
|
122
|
+
L ...199
|
|
123
|
+
L ...200
|
|
124
|
+
G ...201
|
|
125
|
+
L ...202
|
|
126
|
+
G ...203
|
|
127
|
+
L ...204
|
|
128
|
+
L ...205
|
|
129
|
+
L ...206
|
|
130
|
+
L ...207
|
|
131
|
+
L ...208
|
|
132
|
+
L ...209
|
|
133
|
+
L ...210
|
|
134
|
+
L ...211
|
|
135
|
+
L ...212
|
|
136
|
+
L ...213
|
|
137
|
+
L ...214
|
|
138
|
+
L ...215
|
|
139
|
+
L ...216
|
|
140
|
+
L ...217
|
|
141
|
+
L ...218
|
|
142
|
+
L ...219
|
|
143
|
+
L ...220
|
|
144
|
+
L ...221
|
|
145
|
+
L ...222
|
|
146
|
+
L ...223
|
|
147
|
+
L ...224
|
|
148
|
+
L ...225
|
|
149
|
+
L ...226
|
|
150
|
+
L ...227
|
|
151
|
+
L ...228
|
|
152
|
+
L ...229
|
|
153
|
+
L ...230
|
|
154
|
+
L ...231
|
|
155
|
+
L ...232
|
|
156
|
+
L ...233
|
|
157
|
+
L ...234
|
|
158
|
+
L ...235
|
|
159
|
+
L ...236
|
|
160
|
+
L ...237
|
|
161
|
+
L ...238
|
|
162
|
+
L ...239
|
|
163
|
+
L ...240
|
|
164
|
+
L ...241
|
|
165
|
+
L ...242
|
|
166
|
+
L ...243
|
|
167
|
+
L ...244
|
|
168
|
+
L ...245
|
|
169
|
+
L ...246
|
|
170
|
+
L ...247
|
|
171
|
+
L ...248
|
|
172
|
+
L ...249
|
|
173
|
+
L ...250
|
|
174
|
+
E ...251
|
|
175
|
+
L ...252
|
|
176
|
+
L ...253
|
|
177
|
+
L ...254
|
|
178
|
+
L ...255
|
|
179
|
+
L ...256
|
|
180
|
+
L ...257
|
|
181
|
+
L ...258
|
|
182
|
+
L ...259
|
|
183
|
+
L ...260
|
|
184
|
+
L ...261
|
|
185
|
+
E ...262
|
|
186
|
+
L ...263
|
|
187
|
+
E ...264
|
|
188
|
+
L ...265
|
|
189
|
+
L ...267
|
|
190
|
+
L ...266
|
|
191
|
+
L ...268
|
|
192
|
+
E ...269
|
|
193
|
+
L ...270
|
|
194
|
+
L ...271
|
|
195
|
+
L ...272
|
|
196
|
+
L ...273
|
|
197
|
+
L ...274
|
|
198
|
+
L ...275
|
|
199
|
+
E ...276
|
|
200
|
+
E ...277
|
|
201
|
+
E ...278
|
|
202
|
+
E ...279
|
|
203
|
+
L ...280
|
|
204
|
+
L ...281
|
|
205
|
+
L ...282
|
|
206
|
+
L ...283
|
|
207
|
+
L ...284
|
|
208
|
+
L ...285
|
|
209
|
+
L ...286
|
|
210
|
+
L ...287
|
|
211
|
+
L ...288
|
|
212
|
+
E ...289
|
|
213
|
+
L ...290
|
|
214
|
+
L ...291
|
|
215
|
+
G ...292
|
|
216
|
+
L ...293
|
|
217
|
+
E ...294
|
|
218
|
+
L ...295
|
|
219
|
+
L ...296
|
|
220
|
+
G ...297
|
|
221
|
+
L ...298
|
|
222
|
+
E ...299
|
|
223
|
+
L ...300
|
|
224
|
+
L ...301
|
|
225
|
+
L ...302
|
|
226
|
+
L ...303
|
|
227
|
+
COLUMNS
|
|
228
|
+
.ETHSD ...269 1. ...270 1.
|
|
229
|
+
.ETHSD ...000 -10.1974
|
|
230
|
+
.BUDSD ...271 1. ...293 1.
|
|
231
|
+
.BUDSD ...000 -29.1163
|
|
232
|
+
.HEPTS ...267 1. ...268 1.
|
|
233
|
+
.HEPTS ...000 -12.8462
|
|
234
|
+
.M28IS ...032 1. ...055 1.
|
|
235
|
+
.TF0SD ...300 1. ...301 .63
|
|
236
|
+
.TF0SD ...302 .37 ...000 -4.7113
|
|
237
|
+
.RKDIS ...028 1. ...055 1.
|
|
238
|
+
.ADHD1 ...056 2.857 ...133 .984
|
|
239
|
+
.ADHD1 ...140 1. ...000 -3.9824
|
|
240
|
+
.PREHT ...289 1. ...290 1.
|
|
241
|
+
.C4LPG ...169 1. ...173 1.
|
|
242
|
+
.C4LPG ...174 1. ...000 -2.7214
|
|
243
|
+
.M28SL ...033 1. ...049 1.
|
|
244
|
+
.M28SL ...045 -.4286 ...000 -6.5884
|
|
245
|
+
.HEPP0 ...267 1. ...274 -1.
|
|
246
|
+
.RKSLD ...029 1. ...031 1.
|
|
247
|
+
.RKSLD ...045 -.2195 ...000 -4.158
|
|
248
|
+
.UN010 ...010 -1.
|
|
249
|
+
.XCAPY ...182 1.
|
|
250
|
+
.REDBA ...294 .1 ...013 -.04
|
|
251
|
+
.TFVIS ...051 .362 ...052 1.
|
|
252
|
+
.TFVIS ...053 .362 ...054 .829
|
|
253
|
+
.TFVIS ...056 2.127 ...000 -4.3557
|
|
254
|
+
.T0TMX ...168 1. ...170 -.25
|
|
255
|
+
.T0TMX ...171 .12 ...173 1.
|
|
256
|
+
.T0TMX ...174 1. ...000 -3.103
|
|
257
|
+
.EGV0L ...000 -5.9898 ...211 1.
|
|
258
|
+
.EGV0L ...212 1.
|
|
259
|
+
.VNNF2 ...193 -.272 ...192 -.272
|
|
260
|
+
.VNNF2 ...194 -.272 ...195 -.272
|
|
261
|
+
.C5FDP ...181 1. ...183 -1.
|
|
262
|
+
.C5FDP ...184 -.1614 ...185 1.1614
|
|
263
|
+
.C5FDP ...186 1.1614
|
|
264
|
+
.TFNS1 ...050 1. ...051 -1.
|
|
265
|
+
.TFNS1 ...000 .0087
|
|
266
|
+
.CFMSU ...261 -2.9155 ...278 1.
|
|
267
|
+
.VN4PH ...179 1. ...198 -1.
|
|
268
|
+
.CFMSG ...279 1. ...285 .6526
|
|
269
|
+
.ERV0L ...233 1. ...234 1.
|
|
270
|
+
.ERV0L ...000 -4.4497
|
|
271
|
+
.PKDIS ...026 1. ...055 1.
|
|
272
|
+
.EEV0L ...000 -5.348 ...222 1.
|
|
273
|
+
.EEV0L ...223 1.
|
|
274
|
+
.CS1TP ...189 -1. ...191 1.
|
|
275
|
+
.CS1TP ...190 1. ...000 .0078
|
|
276
|
+
.JP5DS ...046 1. ...047 -.5
|
|
277
|
+
.JP5DS ...048 1. ...050 1.
|
|
278
|
+
.JP5DS ...000 -4.0337
|
|
279
|
+
.DMD0S ...144 1. ...145 1.
|
|
280
|
+
.DMD0S ...000 -3.8202
|
|
281
|
+
.PKSLD ...027 1.25 ...030 1.
|
|
282
|
+
.PKSLD ...045 -.25 ...000 -4.3425
|
|
283
|
+
.VNSW2 ...051 1. ...189 -1.
|
|
284
|
+
.VNSW2 ...000 .015
|
|
285
|
+
.TGAS1 ...134 1. ...135 1.
|
|
286
|
+
.TGAS1 ...137 -1.667
|
|
287
|
+
.TGAS2 ...137 -1.367 ...134 1.
|
|
288
|
+
.TGAS2 ...136 1.
|
|
289
|
+
.LD1EG ...219 5.2638 ...244 7.593
|
|
290
|
+
.LD1EG ...000 -1.
|
|
291
|
+
.LD2EG ...219 15.7829 ...245 18.5185
|
|
292
|
+
.LD2EG ...000 -1.
|
|
293
|
+
.JP1TF ...034 1. ...050 1.
|
|
294
|
+
.JP1TF ...301 -1.
|
|
295
|
+
.JP1DS ...034 1. ...035 1.
|
|
296
|
+
.JP1DS ...036 -.2 ...050 1.
|
|
297
|
+
.JP1DS ...000 -4.5066
|
|
298
|
+
.JP4DS ...038 1. ...041 1.
|
|
299
|
+
.JP4DS ...050 1. ...000 -2.7704
|
|
300
|
+
.VN4DB ...051 1. ...179 1.
|
|
301
|
+
.VN4DB ...204 2. ...281 1.
|
|
302
|
+
.VN4DB ...000 -4.3739
|
|
303
|
+
.T5JP5 ...037 1. ...046 -1.
|
|
304
|
+
.T5JP5 ...047 1. ...050 -1.
|
|
305
|
+
.T5JP5 ...000 -.0087
|
|
306
|
+
.J4210 ...041 1. ...042 1.062
|
|
307
|
+
.J4210 ...044 .0638 ...050 1.
|
|
308
|
+
.J4210 ...000 -3.0626
|
|
309
|
+
.T5JP1 ...034 -1. ...036 1.
|
|
310
|
+
.T5JP1 ...037 1. ...050 -1.
|
|
311
|
+
.T5JP1 ...000 -.0087
|
|
312
|
+
.TFCAT ...054 -11.055 ...156 24.476
|
|
313
|
+
.TFCAT ...157 1. ...281 -2.5386
|
|
314
|
+
.TFCAT ...282 10.0375
|
|
315
|
+
.VNSW1 ...050 1. ...189 -1.
|
|
316
|
+
.VNSW1 ...000 .0087
|
|
317
|
+
.ETHRF ...264 -.42 ...269 1.
|
|
318
|
+
.ETHRF ...000 1.35
|
|
319
|
+
.LD1ER ...241 75.9202 ...248 19.7239
|
|
320
|
+
.LD1ER ...000 -1.
|
|
321
|
+
.LD2ER ...000 -1. ...241 151.8405
|
|
322
|
+
.LD2ER ...249 12.3305
|
|
323
|
+
.LD1EE ...000 -1. ...230 14.5377
|
|
324
|
+
.LD1EE ...246 14.1044
|
|
325
|
+
.LD2EE ...000 -1. ...230 25.3995
|
|
326
|
+
.LD2EE ...247 12.3305
|
|
327
|
+
.PC4TF ...264 -.66 ...265 .66
|
|
328
|
+
.PC4TF ...273 1.
|
|
329
|
+
.C5TRF ...183 1. ...264 -.7
|
|
330
|
+
.C5TRF ...265 .7
|
|
331
|
+
.CCSRF ...156 17.372 ...157 1.
|
|
332
|
+
.CCSRF ...264 -.9 ...266 1.
|
|
333
|
+
.CCSRF ...000 -.2
|
|
334
|
+
.DGHDS ...137 8.33 ...138 1.
|
|
335
|
+
.DGHDS ...139 1.483 ...262 -9.648
|
|
336
|
+
.DGHDS ...264 -.014 ...265 .014
|
|
337
|
+
.DGHDS ...000 -5.9218
|
|
338
|
+
.ADHDS ...133 .982 ...137 10.
|
|
339
|
+
.ADHDS ...140 1. ...262 -9.648
|
|
340
|
+
.ADHDS ...000 -3.9942 ...264 -.0126
|
|
341
|
+
.ADHDS ...265 .0126
|
|
342
|
+
.VN4RF ...179 1. ...264 -.78
|
|
343
|
+
.VN4RF ...265 .78
|
|
344
|
+
.GWG0S ...142 1. ...143 1.
|
|
345
|
+
.GWG0S ...000 -4.0195
|
|
346
|
+
.DGFDG ...139 -1. ...141 1.
|
|
347
|
+
.DGFDG ...142 1.
|
|
348
|
+
.ADFHD ...140 -1. ...142 .7763
|
|
349
|
+
.ADFHD ...156 4.401 ...157 .2237
|
|
350
|
+
.C4VIS ...173 -1. ...200 1.
|
|
351
|
+
.CATFI ...147 -1. ...276 -6.
|
|
352
|
+
.CATFI ...277 -3.3 ...278 -1.6
|
|
353
|
+
.CATFI ...279 -.916 ...000 3.2253
|
|
354
|
+
.C3LPG ...167 1. ...172 1.
|
|
355
|
+
.C3LPG ...174 1. ...202 1.
|
|
356
|
+
.C3LPG ...000 -2.7904
|
|
357
|
+
.PETCF ...147 -1. ...148 1.
|
|
358
|
+
.PETCF ...276 -18.4 ...277 .462
|
|
359
|
+
.PETCF ...278 -4.2 ...279 -.966
|
|
360
|
+
.C3MIX ...170 1. ...171 -1.
|
|
361
|
+
.C3MIX ...172 1. ...173 -1.
|
|
362
|
+
.C3MIX ...202 1.
|
|
363
|
+
.CB1H1 ...147 -1. ...158 1.
|
|
364
|
+
.CB1H1 ...276 -5.4 ...277 -3.96
|
|
365
|
+
.CB1H1 ...278 -1.68 ...279 -.927
|
|
366
|
+
.CB1H3 ...147 -1. ...159 1.
|
|
367
|
+
.CB1H3 ...276 -7.1 ...277 9.9
|
|
368
|
+
.CB1H3 ...278 -1.97 ...279 -.946
|
|
369
|
+
.PS1LF ...147 -1. ...149 1.
|
|
370
|
+
.PS1LF ...276 -2.5 ...277 -20.46
|
|
371
|
+
.PS1LF ...278 -1.6 ...279 -.861
|
|
372
|
+
.PS1H1 ...147 -1. ...150 1.
|
|
373
|
+
.PS1H1 ...276 -2.8 ...277 -14.685
|
|
374
|
+
.PS1H1 ...278 -2.6 ...279 -.892
|
|
375
|
+
.PS1H2 ...147 -1. ...151 1.
|
|
376
|
+
.PS1H2 ...276 -3.7 ...277 3.135
|
|
377
|
+
.PS1H2 ...278 -2.8 ...279 -.915
|
|
378
|
+
.PS1H3 ...147 -1. ...152 1.
|
|
379
|
+
.PS1H3 ...276 -3.4 ...277 9.735
|
|
380
|
+
.PS1H3 ...278 -3.1 ...279 -.942
|
|
381
|
+
.PS2LF ...147 -1. ...153 1.
|
|
382
|
+
.PS2LF ...276 -1.1 ...277 -16.5
|
|
383
|
+
.PS2LF ...278 -1.74 ...279 -.862
|
|
384
|
+
.PS2HF ...147 -1. ...154 1.
|
|
385
|
+
.PS2HF ...276 -3.9 ...277 -1.65
|
|
386
|
+
.PS2HF ...278 -2.71 ...279 -.894
|
|
387
|
+
.GTSGB ...175 1. ...260 1.
|
|
388
|
+
.GTSGB ...000 -2.9662
|
|
389
|
+
.MD0CF ...145 1. ...147 -1.
|
|
390
|
+
.MD0CF ...276 .3 ...277 -23.1
|
|
391
|
+
.MD0CF ...278 -1.25 ...279 -.845
|
|
392
|
+
.SPSU1 ...260 .00026 ...261 1.
|
|
393
|
+
.SPSU1 ...263 1. ...000 -.00176
|
|
394
|
+
.SPSU2 ...260 .00026 ...262 1.
|
|
395
|
+
.SPSU2 ...263 1. ...000 -.00176
|
|
396
|
+
.C3VRF ...202 1. ...264 -.56
|
|
397
|
+
.PS3HF ...147 -1. ...155 1.
|
|
398
|
+
.PS3HF ...276 -1.1 ...277 -9.9
|
|
399
|
+
.PS3HF ...278 -2.15 ...279 -.878
|
|
400
|
+
.BF0SD ...164 1. ...165 1.
|
|
401
|
+
.BF0SD ...000 -2.6143
|
|
402
|
+
.C4VRF ...200 1. ...264 -.66
|
|
403
|
+
.C4VRF ...265 .66
|
|
404
|
+
.CCSF6 ...157 1. ...164 -1.
|
|
405
|
+
.CCSVF ...156 1. ...166 -1.
|
|
406
|
+
.FCTEM ...260 -.0029 ...283 -.0007
|
|
407
|
+
.FCTEM ...284 .44 ...285 -.0459
|
|
408
|
+
.FCTEM ...286 1. ...289 -.78
|
|
409
|
+
.FCTEM ...000 -.00049
|
|
410
|
+
.VN0ER ...188 1. ...241 -1.125
|
|
411
|
+
.GASRF ...260 1. ...264 -1.
|
|
412
|
+
.G0TCF ...142 1. ...147 -1.
|
|
413
|
+
.G0TCF ...276 1.2 ...277 -23.1
|
|
414
|
+
.G0TCF ...278 -1. ...279 -.832
|
|
415
|
+
.PC4TG ...213 64. ...214 -66.
|
|
416
|
+
.PC4TG ...215 73. ...216 -92.
|
|
417
|
+
.PC4TG ...217 40. ...218 -50.
|
|
418
|
+
.PC4TG ...220 317.5 ...221 -613.2
|
|
419
|
+
.PC4TG ...219 .24 ...211 -1.
|
|
420
|
+
.PC4TG ...244 -1. ...245 -1.
|
|
421
|
+
.PC4TG ...273 1.
|
|
422
|
+
.P0LYG ...213 1. ...214 -3.
|
|
423
|
+
.P0LYG ...215 -17. ...216 -2.
|
|
424
|
+
.P0LYG ...217 -24. ...218 14.
|
|
425
|
+
.P0LYG ...220 -5.1 ...221 -19.2
|
|
426
|
+
.P0LYG ...219 1.29 ...211 -1.
|
|
427
|
+
.P0LYG ...244 -1. ...245 -1.
|
|
428
|
+
.P0LYG ...274 1.
|
|
429
|
+
.P90BG ...256 1. ...213 -9.
|
|
430
|
+
.P90BG ...214 7. ...215 -52.
|
|
431
|
+
.P90BG ...216 33. ...217 -70.
|
|
432
|
+
.P90BG ...218 60. ...220 -81.
|
|
433
|
+
.P90BG ...221 95.8 ...219 -.7
|
|
434
|
+
.P90BG ...211 -1. ...244 -1.
|
|
435
|
+
.P90BG ...245 -1. ...000 .0023
|
|
436
|
+
.P93BG ...213 -9. ...214 7.
|
|
437
|
+
.P93BG ...215 -52. ...216 33.
|
|
438
|
+
.P93BG ...217 -69. ...218 59.
|
|
439
|
+
.P93BG ...220 -80.6 ...221 95.8
|
|
440
|
+
.P93BG ...219 -3.23 ...211 -1.
|
|
441
|
+
.P93BG ...244 -1. ...245 -1.
|
|
442
|
+
.P93BG ...257 1. ...000 .0023
|
|
443
|
+
.P96BG ...213 -9. ...214 7.
|
|
444
|
+
.P96BG ...215 -52. ...216 33.
|
|
445
|
+
.P96BG ...217 -68. ...218 58.
|
|
446
|
+
.P96BG ...220 -80.2 ...221 95.8
|
|
447
|
+
.P96BG ...219 -4.94 ...211 -1.
|
|
448
|
+
.P96BG ...244 -1. ...245 -1.
|
|
449
|
+
.P96BG ...258 1. ...000 .0023
|
|
450
|
+
.P990G ...213 1.1 ...214 -3.1
|
|
451
|
+
.P990G ...215 22. ...216 -41.
|
|
452
|
+
.P990G ...217 49. ...218 -59.
|
|
453
|
+
.P990G ...220 44. ...221 -59.
|
|
454
|
+
.P990G ...219 7.48 ...211 -1.
|
|
455
|
+
.P990G ...244 -1. ...245 -1.
|
|
456
|
+
.P990G ...255 1. ...000 .0023
|
|
457
|
+
.P99BG ...213 -9. ...214 7.
|
|
458
|
+
.P99BG ...215 -52. ...216 33.
|
|
459
|
+
.P99BG ...217 -67. ...218 57.
|
|
460
|
+
.P99BG ...220 -79.8 ...221 95.8
|
|
461
|
+
.P99BG ...219 -6.21 ...211 -1.
|
|
462
|
+
.P99BG ...244 -1. ...245 -1.
|
|
463
|
+
.P99BG ...259 1. ...000 .0023
|
|
464
|
+
.C5TEG ...213 4. ...214 -6.
|
|
465
|
+
.C5TEG ...215 58. ...216 -77.
|
|
466
|
+
.C5TEG ...217 40. ...218 -50.
|
|
467
|
+
.C5TEG ...220 70. ...221 -118.2
|
|
468
|
+
.C5TEG ...219 10.99 ...211 -1.
|
|
469
|
+
.C5TEG ...244 -1. ...245 -1.
|
|
470
|
+
.C5TEG ...183 1. ...250 1.
|
|
471
|
+
.C5TEG ...251 -1.
|
|
472
|
+
.LCN0G ...213 1.5 ...214 -3.5
|
|
473
|
+
.LCN0G ...215 40. ...216 -59.
|
|
474
|
+
.LCN0G ...217 38. ...218 -48.
|
|
475
|
+
.LCN0G ...220 50.2 ...221 -80.2
|
|
476
|
+
.LCN0G ...219 2.98 ...211 -1.
|
|
477
|
+
.LCN0G ...244 -1. ...245 -1.
|
|
478
|
+
.LCN0G ...250 1. ...280 1.
|
|
479
|
+
.LCN0G ...000 .0089
|
|
480
|
+
.FCREC ...156 -.7977 ...260 -.0071
|
|
481
|
+
.FCREC ...280 -.0059 ...281 -.0039
|
|
482
|
+
.FCREC ...282 -.0033 ...283 .0065
|
|
483
|
+
.FCREC ...284 -.09 ...285 -.0564
|
|
484
|
+
.FCREC ...287 1. ...289 -.925
|
|
485
|
+
.FCREC ...000 -.00123
|
|
486
|
+
.FCMAR ...260 -.0017 ...276 1.
|
|
487
|
+
.FCMAR ...280 .0036 ...281 .0024
|
|
488
|
+
.FCMAR ...282 .002 ...283 .0011
|
|
489
|
+
.FCMAR ...284 .32 ...285 .0696
|
|
490
|
+
.FCMBR ...156 .152 ...277 1.
|
|
491
|
+
.FCMBR ...283 -.0023 ...280 .0006
|
|
492
|
+
.FCMBR ...281 .0004 ...282 .00035
|
|
493
|
+
.FCMBR ...260 -.0005 ...284 .042
|
|
494
|
+
.FCC0N ...260 .0006 ...280 -.00112
|
|
495
|
+
.FCC0N ...281 -.00075 ...282 -.00063
|
|
496
|
+
.FCC0N ...283 -.039 ...284 1.
|
|
497
|
+
.FCC0N ...285 .1969 ...288 1.
|
|
498
|
+
.FCC0N ...289 2.375 ...156 .6075
|
|
499
|
+
.FCC0N ...157 .05 ...000 .00058
|
|
500
|
+
.VN1ER ...187 1. ...239 1.
|
|
501
|
+
.VN1ER ...240 -1. ...242 .4
|
|
502
|
+
.FCTPT ...147 1. ...156 -7.383
|
|
503
|
+
.FCTPT ...157 -.4 ...260 -.04495
|
|
504
|
+
.FCTPT ...280 -.19654 ...281 -.13103
|
|
505
|
+
.FCTPT ...282 -.10919 ...283 -.22573
|
|
506
|
+
.FCTPT ...284 4.569 ...286 -6.
|
|
507
|
+
.FCTPT ...287 -2. ...288 -2.
|
|
508
|
+
.FCTPT ...289 1.49 ...290 -1.3
|
|
509
|
+
.FCTPT ...291 1. ...292 1.
|
|
510
|
+
.FCTPT ...000 .0186
|
|
511
|
+
.VNRER ...235 1. ...236 -1.
|
|
512
|
+
.VNRER ...242 4. ...243 -8.
|
|
513
|
+
.VNRER ...177 1.
|
|
514
|
+
.VN7ER ...237 1. ...238 -1.
|
|
515
|
+
.VN7ER ...242 .5 ...243 -1.
|
|
516
|
+
.VN7ER ...178 1.
|
|
517
|
+
.C4VEG ...213 53. ...214 -55.
|
|
518
|
+
.C4VEG ...215 73. ...216 -92.
|
|
519
|
+
.C4VEG ...217 40. ...218 -50.
|
|
520
|
+
.C4VEG ...220 273.5 ...221 -525.2
|
|
521
|
+
.C4VEG ...219 7.34 ...211 -1.
|
|
522
|
+
.C4VEG ...244 -1. ...245 -1.
|
|
523
|
+
.C4VEG ...200 1.
|
|
524
|
+
.C3VEG ...213 169. ...214 -171.
|
|
525
|
+
.C3VEG ...215 98. ...216 -117.
|
|
526
|
+
.C3VEG ...217 70. ...218 -80.
|
|
527
|
+
.C3VEG ...220 762. ...221 -1478.2
|
|
528
|
+
.C3VEG ...219 -2.56 ...211 -1.
|
|
529
|
+
.C3VEG ...244 -1. ...245 -1.
|
|
530
|
+
.C3VEG ...202 1.
|
|
531
|
+
.G0IF6 ...164 -1. ...166 -20.051
|
|
532
|
+
.G0IF6 ...000 4.0021
|
|
533
|
+
.MD0IF ...164 -1. ...166 -15.911
|
|
534
|
+
.MD0IF ...000 3.7167
|
|
535
|
+
.CFIF6 ...164 -1. ...166 -5.395
|
|
536
|
+
.CFIF6 ...000 3.2253
|
|
537
|
+
.F1V0L ...160 1. ...164 1.
|
|
538
|
+
.F1V0L ...166 7.925 ...000 -3.1011
|
|
539
|
+
.F2V0L ...161 1. ...164 1.
|
|
540
|
+
.F2V0L ...166 3.117 ...000 -2.8049
|
|
541
|
+
.F3V0L ...162 1. ...164 1.
|
|
542
|
+
.F3V0L ...166 1.954 ...000 -2.7235
|
|
543
|
+
.F4V0L ...163 1. ...164 1.
|
|
544
|
+
.F4V0L ...166 -1.117 ...000 -2.8146
|
|
545
|
+
.PETF6 ...164 -1. ...148 1.
|
|
546
|
+
.PETF6 ...166 -6.192
|
|
547
|
+
.KEBF6 ...044 1. ...164 -1.
|
|
548
|
+
.KEBF6 ...166 -27.4598
|
|
549
|
+
.WKEF6 ...045 1. ...164 -1.
|
|
550
|
+
.WKEF6 ...166 -28.869
|
|
551
|
+
.CB161 ...158 1. ...164 -1.
|
|
552
|
+
.CB161 ...166 -6.248
|
|
553
|
+
.CB163 ...159 1. ...164 -1.
|
|
554
|
+
.CB163 ...166 -2.346
|
|
555
|
+
.PS1L6 ...149 1. ...164 -1.
|
|
556
|
+
.PS1L6 ...166 -15.619
|
|
557
|
+
.PS161 ...150 1. ...164 -1.
|
|
558
|
+
.PS161 ...166 -9.972
|
|
559
|
+
.PS162 ...151 1. ...164 -1.
|
|
560
|
+
.PS162 ...166 -5.883
|
|
561
|
+
.PS163 ...152 1. ...164 -1.
|
|
562
|
+
.PS163 ...166 -.923
|
|
563
|
+
.PS2L6 ...153 1. ...164 -1.
|
|
564
|
+
.PS2L6 ...166 -15.292
|
|
565
|
+
.PS2H6 ...154 1. ...164 -1.
|
|
566
|
+
.PS2H6 ...166 -9.503
|
|
567
|
+
.MD0F6 ...145 1. ...164 -1.
|
|
568
|
+
.MD0F6 ...166 -15.911
|
|
569
|
+
.PTF0E ...224 -2.5 ...225 .5
|
|
570
|
+
.PTF0E ...226 -14.32 ...227 -5.7
|
|
571
|
+
.PTF0E ...228 9. ...229 -19.
|
|
572
|
+
.PTF0E ...231 -4.56 ...232 16.1
|
|
573
|
+
.PTF0E ...230 2.01 ...222 -1.
|
|
574
|
+
.PTF0E ...246 -1. ...247 -1.
|
|
575
|
+
.PTF0E ...303 1.
|
|
576
|
+
.SCNTE ...224 -.2 ...225 -1.8
|
|
577
|
+
.SCNTE ...226 1.64 ...227 -21.6
|
|
578
|
+
.SCNTE ...228 30. ...229 -40.
|
|
579
|
+
.SCNTE ...231 21.02 ...232 -18.2
|
|
580
|
+
.SCNTE ...230 6.61 ...222 -1.
|
|
581
|
+
.SCNTE ...246 -1. ...247 -1.
|
|
582
|
+
.SCNTE ...275 1. ...000 .0005
|
|
583
|
+
.SCNTR ...235 -.2 ...236 -1.8
|
|
584
|
+
.SCNTR ...237 9. ...238 -29.
|
|
585
|
+
.SCNTR ...239 30. ...240 -40.
|
|
586
|
+
.SCNTR ...242 24.7 ...243 -25.6
|
|
587
|
+
.SCNTR ...241 -2.38 ...233 -1.
|
|
588
|
+
.SCNTR ...248 -1. ...249 -1.
|
|
589
|
+
.SCNTR ...275 1. ...000 .0005
|
|
590
|
+
.PTF0R ...235 -2.5 ...236 .5
|
|
591
|
+
.PTF0R ...237 -12. ...238 -8.
|
|
592
|
+
.PTF0R ...239 9. ...240 -19.
|
|
593
|
+
.PTF0R ...242 -3.4 ...243 13.8
|
|
594
|
+
.PTF0R ...241 -6.93 ...233 -1.
|
|
595
|
+
.PTF0R ...248 -1. ...249 -1.
|
|
596
|
+
.PTF0R ...303 1.
|
|
597
|
+
.PC4TE ...224 66. ...225 -68.
|
|
598
|
+
.PC4TE ...226 51.8 ...227 -71.8
|
|
599
|
+
.PC4TE ...228 40. ...229 -50.
|
|
600
|
+
.PC4TE ...231 314.9 ...232 -598.
|
|
601
|
+
.PC4TE ...230 -3.78 ...222 -1.
|
|
602
|
+
.PC4TE ...246 -1. ...247 -1.
|
|
603
|
+
.PC4TE ...273 1.
|
|
604
|
+
.P0LYE ...224 3. ...225 -5.
|
|
605
|
+
.P0LYE ...226 -16.6 ...227 -3.4
|
|
606
|
+
.P0LYE ...228 -24. ...229 14.
|
|
607
|
+
.P0LYE ...231 3.1 ...232 -25.6
|
|
608
|
+
.P0LYE ...230 -2.69 ...222 -1.
|
|
609
|
+
.P0LYE ...246 -1. ...247 -1.
|
|
610
|
+
.P0LYE ...274 1.
|
|
611
|
+
.PC4TR ...273 1. ...235 66.
|
|
612
|
+
.PC4TR ...236 -68. ...237 75.
|
|
613
|
+
.PC4TR ...238 -95. ...239 40.
|
|
614
|
+
.PC4TR ...240 -50. ...242 326.5
|
|
615
|
+
.PC4TR ...243 -621.2 ...241 -12.74
|
|
616
|
+
.PC4TR ...233 -1. ...248 -1.
|
|
617
|
+
.PC4TR ...249 -1.
|
|
618
|
+
.P0LYR ...235 3. ...236 -5.
|
|
619
|
+
.P0LYR ...237 -15. ...238 -5.
|
|
620
|
+
.P0LYR ...239 -24. ...240 14.
|
|
621
|
+
.P0LYR ...242 3.9 ...243 -27.2
|
|
622
|
+
.P0LYR ...241 -6.68 ...233 -1.
|
|
623
|
+
.P0LYR ...248 -1. ...249 -1.
|
|
624
|
+
.P0LYR ...274 1.
|
|
625
|
+
.P900E ...225 -2. ...226 -.64
|
|
626
|
+
.P900E ...227 -19.4 ...228 45.
|
|
627
|
+
.P900E ...229 -55. ...231 26.68
|
|
628
|
+
.P900E ...232 -17.6 ...230 5.74
|
|
629
|
+
.P900E ...222 -1. ...246 -1.
|
|
630
|
+
.P900E ...247 -1. ...252 1.
|
|
631
|
+
.P900E ...000 .0023
|
|
632
|
+
.P930E ...224 1. ...225 -3.
|
|
633
|
+
.P930E ...226 3.16 ...227 -23.2
|
|
634
|
+
.P930E ...228 46. ...229 -56.
|
|
635
|
+
.P930E ...231 32.98 ...232 -29.4
|
|
636
|
+
.P930E ...230 5.55 ...222 -1.
|
|
637
|
+
.P930E ...246 -1. ...247 -1.
|
|
638
|
+
.P930E ...253 1. ...000 .0023
|
|
639
|
+
.P960E ...224 2. ...225 -4.
|
|
640
|
+
.P960E ...226 6.96 ...227 -27.
|
|
641
|
+
.P960E ...228 47. ...229 -57.
|
|
642
|
+
.P960E ...231 39.28 ...232 -41.2
|
|
643
|
+
.P960E ...230 5.15 ...222 -1.
|
|
644
|
+
.P960E ...246 -1. ...247 -1.
|
|
645
|
+
.P960E ...254 1. ...000 .0023
|
|
646
|
+
.P900R ...236 -2. ...237 6.
|
|
647
|
+
.P900R ...238 -26. ...239 45.
|
|
648
|
+
.P900R ...240 -55. ...242 30.
|
|
649
|
+
.P900R ...243 -24.2 ...241 -1.05
|
|
650
|
+
.P900R ...233 -1. ...248 -1.
|
|
651
|
+
.P900R ...249 -1. ...252 1.
|
|
652
|
+
.P900R ...000 .0023
|
|
653
|
+
.P930R ...235 1. ...236 -3.
|
|
654
|
+
.P930R ...237 11. ...238 -31.
|
|
655
|
+
.P930R ...239 46. ...240 -56.
|
|
656
|
+
.P930R ...242 36.9 ...243 -37.2
|
|
657
|
+
.P930R ...241 -1.27 ...233 -1.
|
|
658
|
+
.P930R ...248 -1. ...249 -1.
|
|
659
|
+
.P930R ...253 1. ...000 .0023
|
|
660
|
+
.P960R ...235 2. ...236 -4.
|
|
661
|
+
.P960R ...237 16. ...238 -36.
|
|
662
|
+
.P960R ...239 47. ...240 -57.
|
|
663
|
+
.P960R ...242 43.8 ...243 -50.2
|
|
664
|
+
.P960R ...241 -1.71 ...233 -1.
|
|
665
|
+
.P960R ...248 -1. ...249 -1.
|
|
666
|
+
.P960R ...254 1. ...000 .0023
|
|
667
|
+
.F0RFF ...164 1. ...264 -1.
|
|
668
|
+
.F0RFF ...000 .3
|
|
669
|
+
.P90BE ...224 -7. ...225 5.
|
|
670
|
+
.P90BE ...226 -43.2 ...227 23.2
|
|
671
|
+
.P90BE ...228 -70. ...229 60.
|
|
672
|
+
.P90BE ...231 -68.6 ...232 81.
|
|
673
|
+
.P90BE ...230 -3.65 ...222 -1.
|
|
674
|
+
.P90BE ...246 -1. ...247 -1.
|
|
675
|
+
.P90BE ...256 1. ...000 .0023
|
|
676
|
+
.P93BE ...224 -7. ...225 5.
|
|
677
|
+
.P93BE ...226 -43.2 ...227 23.2
|
|
678
|
+
.P93BE ...228 -69. ...229 59.
|
|
679
|
+
.P93BE ...231 -68.2 ...232 81.
|
|
680
|
+
.P93BE ...230 -5.85 ...222 -1.
|
|
681
|
+
.P93BE ...246 -1. ...247 -1.
|
|
682
|
+
.P93BE ...257 1. ...000 .0023
|
|
683
|
+
.P96BE ...224 -7. ...225 5.
|
|
684
|
+
.P96BE ...226 -43.2 ...227 23.2
|
|
685
|
+
.P96BE ...228 -68. ...229 58.
|
|
686
|
+
.P96BE ...231 -67.8 ...232 81.
|
|
687
|
+
.P96BE ...230 -7.63 ...222 -1.
|
|
688
|
+
.P96BE ...246 -1. ...247 -1.
|
|
689
|
+
.P96BE ...258 1. ...000 .0023
|
|
690
|
+
.P990E ...224 3.5 ...225 -5.5
|
|
691
|
+
.P990E ...226 13.04 ...227 -33.
|
|
692
|
+
.P990E ...228 49. ...229 -59.
|
|
693
|
+
.P990E ...231 49.12 ...232 -59.2
|
|
694
|
+
.P990E ...230 4.43 ...222 -1.
|
|
695
|
+
.P990E ...246 -1. ...247 -1.
|
|
696
|
+
.P990E ...255 1. ...000 .0023
|
|
697
|
+
.P99BE ...224 -7. ...225 5.
|
|
698
|
+
.P99BE ...226 -43.2 ...227 23.2
|
|
699
|
+
.P99BE ...228 -67. ...229 57.
|
|
700
|
+
.P99BE ...231 -67.4 ...232 81.
|
|
701
|
+
.P99BE ...230 -8.38 ...222 -1.
|
|
702
|
+
.P99BE ...246 -1. ...247 -1.
|
|
703
|
+
.P99BE ...259 1. ...000 .0023
|
|
704
|
+
.P90BR ...235 -7. ...236 5.
|
|
705
|
+
.P90BR ...237 -50. ...238 30.
|
|
706
|
+
.P90BR ...239 -70. ...240 60.
|
|
707
|
+
.P90BR ...242 -72. ...243 87.8
|
|
708
|
+
.P90BR ...241 -10.34 ...233 -1.
|
|
709
|
+
.P90BR ...248 -1. ...249 -1.
|
|
710
|
+
.P90BR ...256 1. ...000 .0023
|
|
711
|
+
.P93BR ...235 -7. ...236 5.
|
|
712
|
+
.P93BR ...237 -50. ...238 30.
|
|
713
|
+
.P93BR ...239 -69. ...240 59.
|
|
714
|
+
.P93BR ...242 -71.6 ...243 87.8
|
|
715
|
+
.P93BR ...241 -12.38 ...233 -1.
|
|
716
|
+
.P93BR ...248 -1. ...249 -1.
|
|
717
|
+
.P93BR ...257 1. ...000 .0023
|
|
718
|
+
.P96BR ...235 -7. ...236 5.
|
|
719
|
+
.P96BR ...237 -50. ...238 30.
|
|
720
|
+
.P96BR ...239 -68. ...240 58.
|
|
721
|
+
.P96BR ...242 -71.2 ...243 87.8
|
|
722
|
+
.P96BR ...241 -14.06 ...233 -1.
|
|
723
|
+
.P96BR ...248 -1. ...249 -1.
|
|
724
|
+
.P96BR ...258 1. ...000 .0023
|
|
725
|
+
.P990R ...235 3.5 ...236 -5.5
|
|
726
|
+
.P990R ...237 24. ...238 -44.
|
|
727
|
+
.P990R ...239 49. ...240 -59.
|
|
728
|
+
.P990R ...242 54.6 ...243 -70.2
|
|
729
|
+
.P990R ...241 -2.38 ...233 -1.
|
|
730
|
+
.P990R ...248 -1. ...249 -1.
|
|
731
|
+
.P990R ...255 1. ...000 .0023
|
|
732
|
+
.P99BR ...235 -7. ...236 5.
|
|
733
|
+
.P99BR ...237 -50. ...238 30.
|
|
734
|
+
.P99BR ...239 -67. ...240 57.
|
|
735
|
+
.P99BR ...242 -70.8 ...243 87.8
|
|
736
|
+
.P99BR ...241 -14.97 ...233 -1.
|
|
737
|
+
.P99BR ...248 -1. ...249 -1.
|
|
738
|
+
.P99BR ...259 1. ...000 .0023
|
|
739
|
+
.PS3H6 ...155 1. ...164 -1.
|
|
740
|
+
.PS3H6 ...166 -13.855
|
|
741
|
+
.HCNTE ...224 -6.5 ...225 4.5
|
|
742
|
+
.HCNTE ...226 -34.08 ...227 14.1
|
|
743
|
+
.HCNTE ...228 -50. ...229 40.
|
|
744
|
+
.HCNTE ...231 -54.04 ...222 -1.
|
|
745
|
+
.HCNTE ...246 -1. ...232 67.9
|
|
746
|
+
.HCNTE ...230 2.44 ...247 -1.
|
|
747
|
+
.HCNTE ...282 1.
|
|
748
|
+
.HCNTR ...235 -6.5 ...236 4.5
|
|
749
|
+
.HCNTR ...237 -38. ...240 40.
|
|
750
|
+
.HCNTR ...242 -56. ...243 71.8
|
|
751
|
+
.HCNTR ...241 -6.68 ...233 -1.
|
|
752
|
+
.HCNTR ...248 -1. ...238 18.
|
|
753
|
+
.HCNTR ...239 -50. ...249 -1.
|
|
754
|
+
.HCNTR ...282 1.
|
|
755
|
+
.LCNBE ...224 -8. ...225 6.
|
|
756
|
+
.LCNBE ...226 -29.52 ...227 21.7
|
|
757
|
+
.LCNBE ...228 -56. ...229 46.
|
|
758
|
+
.LCNBE ...231 -60.16 ...232 87.5
|
|
759
|
+
.LCNBE ...230 1.92 ...222 -1.
|
|
760
|
+
.LCNBE ...246 -1. ...247 -1.
|
|
761
|
+
.LCNBE ...281 1. ...000 .0103
|
|
762
|
+
.LCNBR ...235 -8. ...236 6.
|
|
763
|
+
.LCNBR ...237 -48. ...238 28.
|
|
764
|
+
.LCNBR ...239 -56. ...240 46.
|
|
765
|
+
.LCNBR ...242 -69.4 ...243 93.8
|
|
766
|
+
.LCNBR ...241 -7.02 ...233 -1.
|
|
767
|
+
.LCNBR ...248 -1. ...249 -1.
|
|
768
|
+
.LCNBR ...281 1. ...000 .0103
|
|
769
|
+
.C5TEE ...224 6. ...225 -8.
|
|
770
|
+
.C5TEE ...226 40.4 ...227 -60.4
|
|
771
|
+
.C5TEE ...228 40. ...229 -50.
|
|
772
|
+
.C5TEE ...231 69.2 ...232 -106.6
|
|
773
|
+
.C5TEE ...230 6.96 ...222 -1.
|
|
774
|
+
.C5TEE ...246 -1. ...247 -1.
|
|
775
|
+
.C5TEE ...183 1. ...250 1.
|
|
776
|
+
.C5TEE ...251 .20083
|
|
777
|
+
.LCN0E ...224 3.5 ...225 -5.5
|
|
778
|
+
.LCN0E ...226 26.72 ...227 -46.7
|
|
779
|
+
.LCN0E ...228 38. ...229 -48.
|
|
780
|
+
.LCN0E ...231 51.56 ...232 -72.9
|
|
781
|
+
.LCN0E ...230 -1.19 ...222 -1.
|
|
782
|
+
.LCN0E ...246 -1. ...247 -1.
|
|
783
|
+
.LCN0E ...250 1. ...280 1.
|
|
784
|
+
.LCN0E ...000 .0089
|
|
785
|
+
.LCN0R ...235 3.5 ...236 -5.5
|
|
786
|
+
.LCN0R ...237 42. ...238 -62.
|
|
787
|
+
.LCN0R ...239 38. ...240 -48.
|
|
788
|
+
.LCN0R ...242 59.2 ...243 -88.2
|
|
789
|
+
.LCN0R ...241 -10.17 ...233 -1.
|
|
790
|
+
.LCN0R ...248 -1. ...249 -1.
|
|
791
|
+
.LCN0R ...250 1. ...280 1.
|
|
792
|
+
.LCN0R ...000 .0089
|
|
793
|
+
.G0TF6 ...142 1. ...146 -1.
|
|
794
|
+
.G0TF6 ...164 -1. ...166 -20.051
|
|
795
|
+
.DACFP ...120 2.63 ...147 -.33
|
|
796
|
+
.DACFP ...164 .33 ...166 .49
|
|
797
|
+
.DACFP ...276 -2.013 ...277 3.267
|
|
798
|
+
.DACFP ...278 -1.0164 ...279 -.3102
|
|
799
|
+
.DACFP ...000 .0311
|
|
800
|
+
.C4VEE ...200 1. ...224 55.
|
|
801
|
+
.C4VEE ...225 -57. ...226 51.8
|
|
802
|
+
.C4VEE ...227 -71.8 ...228 40.
|
|
803
|
+
.C4VEE ...229 -50. ...231 270.9
|
|
804
|
+
.C4VEE ...232 -510. ...230 3.25
|
|
805
|
+
.C4VEE ...222 -1. ...246 -1.
|
|
806
|
+
.C4VEE ...247 -1.
|
|
807
|
+
.C3VEE ...202 1. ...224 171.
|
|
808
|
+
.C3VEE ...225 -173. ...226 70.8
|
|
809
|
+
.C3VEE ...227 -90.8 ...228 70.
|
|
810
|
+
.C3VEE ...229 -80. ...231 756.4
|
|
811
|
+
.C3VEE ...232 -1457. ...230 -6.36
|
|
812
|
+
.C3VEE ...222 -1. ...246 -1.
|
|
813
|
+
.C3VEE ...247 -1.
|
|
814
|
+
.C4VER ...200 1. ...201 1.
|
|
815
|
+
.C4VER ...235 55. ...236 -57.
|
|
816
|
+
.C4VER ...237 75. ...238 -95.
|
|
817
|
+
.C4VER ...239 40. ...240 -50.
|
|
818
|
+
.C4VER ...242 282.5 ...243 -533.2
|
|
819
|
+
.C4VER ...241 -5.81 ...233 -1.
|
|
820
|
+
.C4VER ...248 -1. ...249 -1.
|
|
821
|
+
.C3VER ...202 1. ...203 1.
|
|
822
|
+
.C3VER ...235 171. ...236 -173.
|
|
823
|
+
.C3VER ...237 100. ...238 -120.
|
|
824
|
+
.C3VER ...239 70. ...240 -80.
|
|
825
|
+
.C3VER ...242 771. ...243 -1486.2
|
|
826
|
+
.C3VER ...241 -15.15 ...233 -1.
|
|
827
|
+
.C3VER ...248 -1. ...249 -1.
|
|
828
|
+
.SCSRT ...164 -.033 ...166 -.007
|
|
829
|
+
.SCSRT ...180 1. ...182 1.
|
|
830
|
+
.SCSRT ...186 1. ...260 -.079
|
|
831
|
+
.SCSRT ...269 -.3351 ...271 -.0347
|
|
832
|
+
.SCSRT ...275 -.3769
|
|
833
|
+
.P0LYF ...164 -.0059 ...166 -.114
|
|
834
|
+
.P0LYF ...260 -.0802 ...267 -.0427
|
|
835
|
+
.P0LYF ...271 -.0586 ...273 -.1917
|
|
836
|
+
.P0LYF ...274 -.4058 ...283 1.
|
|
837
|
+
.P0LYF ...000 .1273
|
|
838
|
+
.VNVER ...176 1. ...189 1.
|
|
839
|
+
.VNVER ...235 -9. ...236 7.
|
|
840
|
+
.VNVER ...237 -40. ...238 20.
|
|
841
|
+
.VNVER ...239 -60. ...240 50.
|
|
842
|
+
.VNVER ...242 -71. ...243 93.8
|
|
843
|
+
.VNVER ...241 65.12 ...233 -1.
|
|
844
|
+
.VNVER ...248 -1. ...249 -1.
|
|
845
|
+
.VN2PT ...134 -5.7 ...164 -.01
|
|
846
|
+
.VN2PT ...166 -.151 ...196 1.
|
|
847
|
+
.VN2PT ...199 .4762 ...264 .085
|
|
848
|
+
.VN2PT ...260 -.315 ...302 -.198
|
|
849
|
+
.VN2PT ...303 -.462
|
|
850
|
+
.IMPP0 ...134 -5.05 ...164 -.005
|
|
851
|
+
.IMPP0 ...166 -.076 ...199 .4673
|
|
852
|
+
.IMPP0 ...252 -.34 ...256 -.413
|
|
853
|
+
.IMPP0 ...264 .085 ...260 -.219
|
|
854
|
+
.IMPP0 ...000 3.3169
|
|
855
|
+
.IMPP3 ...134 -5.38 ...164 -.005
|
|
856
|
+
.IMPP3 ...166 -.076 ...199 .4673
|
|
857
|
+
.IMPP3 ...253 -.316 ...260 -.259
|
|
858
|
+
.IMPP3 ...000 3.3201 ...257 -.401
|
|
859
|
+
.IMPP3 ...264 .085
|
|
860
|
+
.IMPP6 ...134 -5.7 ...164 -.01
|
|
861
|
+
.IMPP6 ...166 -.151 ...199 .657
|
|
862
|
+
.IMPP6 ...254 -.288 ...258 -.372
|
|
863
|
+
.IMPP6 ...264 .085 ...260 -.315
|
|
864
|
+
.IMPP6 ...000 3.3233
|
|
865
|
+
.IMPP9 ...134 -5.7 ...164 -.01
|
|
866
|
+
.IMPP9 ...166 -.151 ...199 1.2129
|
|
867
|
+
.IMPP9 ...255 -.235 ...259 -.349
|
|
868
|
+
.IMPP9 ...264 .085 ...260 -.395
|
|
869
|
+
.IMPP9 ...000 3.3305
|
|
870
|
+
.VN3P0 ...134 -5.47 ...164 -.005
|
|
871
|
+
.VN3P0 ...166 -.076 ...197 1.
|
|
872
|
+
.VN3P0 ...199 .4673 ...252 -.209
|
|
873
|
+
.VN3P0 ...256 -.561 ...264 .085
|
|
874
|
+
.VN3P0 ...260 -.2 ...000 .0481
|
|
875
|
+
.VN3P3 ...134 -6.13 ...164 -.01
|
|
876
|
+
.VN3P3 ...166 -.151 ...197 1.
|
|
877
|
+
.VN3P3 ...199 .4673 ...253 -.212
|
|
878
|
+
.VN3P3 ...257 -.521 ...264 .085
|
|
879
|
+
.VN3P3 ...260 -.235 ...000 .0513
|
|
880
|
+
.VN3P6 ...134 -6.79 ...164 -.01
|
|
881
|
+
.VN3P6 ...166 -.151 ...197 1.
|
|
882
|
+
.VN3P6 ...199 .4932 ...254 -.222
|
|
883
|
+
.VN3P6 ...258 -.471 ...264 .085
|
|
884
|
+
.VN3P6 ...260 -.282 ...000 .0545
|
|
885
|
+
.VN4P0 ...134 -5.8 ...164 -.052
|
|
886
|
+
.VN4P0 ...166 -.786 ...198 1.
|
|
887
|
+
.VN4P0 ...199 .4673 ...252 -.218
|
|
888
|
+
.VN4P0 ...256 -.538 ...264 .085
|
|
889
|
+
.VN4P0 ...260 -.167 ...000 .0481
|
|
890
|
+
.VN4P3 ...134 -6.51 ...164 -.057
|
|
891
|
+
.VN4P3 ...166 -.861 ...198 1.
|
|
892
|
+
.VN4P3 ...199 .4673 ...253 -.231
|
|
893
|
+
.VN4P3 ...257 -.502 ...264 .085
|
|
894
|
+
.VN4P3 ...260 -.188 ...000 .0513
|
|
895
|
+
.VN4P6 ...134 -7.21 ...164 -.081
|
|
896
|
+
.VN4P6 ...166 -1.224 ...198 1.
|
|
897
|
+
.VN4P6 ...199 .5055 ...254 -.231
|
|
898
|
+
.VN4P6 ...258 -.442 ...264 .085
|
|
899
|
+
.VN4P6 ...260 -.225 ...000 .0545
|
|
900
|
+
.VN2P0 ...134 -5.05 ...164 -.005
|
|
901
|
+
.VN2P0 ...166 -.076 ...196 1.
|
|
902
|
+
.VN2P0 ...199 .4673 ...252 -.34
|
|
903
|
+
.VN2P0 ...256 -.413 ...264 .085
|
|
904
|
+
.VN2P0 ...260 -.219 ...000 .0481
|
|
905
|
+
.VN2P3 ...134 -5.38 ...164 -.005
|
|
906
|
+
.VN2P3 ...166 -.076 ...196 1.
|
|
907
|
+
.VN2P3 ...199 .4673 ...253 -.316
|
|
908
|
+
.VN2P3 ...257 -.401 ...264 .085
|
|
909
|
+
.VN2P3 ...260 -.259 ...000 .0513
|
|
910
|
+
.VN2P6 ...134 -5.7 ...164 -.01
|
|
911
|
+
.VN2P6 ...166 -.151 ...196 1.
|
|
912
|
+
.VN2P6 ...199 .657 ...254 -.288
|
|
913
|
+
.VN2P6 ...258 -.372 ...264 .085
|
|
914
|
+
.VN2P6 ...260 -.315 ...000 .0545
|
|
915
|
+
.VN3P9 ...134 -7.45 ...164 -.015
|
|
916
|
+
.VN3P9 ...166 -.227 ...197 1.
|
|
917
|
+
.VN3P9 ...199 1.1306 ...255 -.216
|
|
918
|
+
.VN3P9 ...259 -.427 ...264 .085
|
|
919
|
+
.VN3P9 ...260 -.331 ...000 .0577
|
|
920
|
+
.VN4P9 ...134 -7.92 ...164 -.086
|
|
921
|
+
.VN4P9 ...166 -1.299 ...198 1.
|
|
922
|
+
.VN4P9 ...199 .8789 ...255 -.23
|
|
923
|
+
.VN4P9 ...259 -.394 ...264 .085
|
|
924
|
+
.VN4P9 ...260 -.279 ...000 .0577
|
|
925
|
+
.VN2P9 ...134 -5.7 ...164 -.01
|
|
926
|
+
.VN2P9 ...166 -.151 ...196 1.
|
|
927
|
+
.VN2P9 ...199 1.2129 ...255 -.235
|
|
928
|
+
.VN2P9 ...259 -.349 ...264 .085
|
|
929
|
+
.VN2P9 ...260 -.395 ...000 .0577
|
|
930
|
+
.NIMP1 ...176 -1. ...177 -8.5
|
|
931
|
+
.NIMP1 ...178 -62.5 ...187 -100.
|
|
932
|
+
.NIMP1 ...188 -55.95 ...000 3.4736
|
|
933
|
+
.NIMP2 ...000 3.1736 ...176 -1.
|
|
934
|
+
.NIMP2 ...177 -.9 ...178 16.
|
|
935
|
+
.NIMP2 ...187 20. ...188 -46.04
|
|
936
|
+
.C4FVN ...176 1. ...177 64.
|
|
937
|
+
.C4FVN ...178 115. ...184 1.
|
|
938
|
+
.C4FVN ...187 100. ...188 64.
|
|
939
|
+
.WSDIS ...023 .92 ...024 1.
|
|
940
|
+
.WSDIS ...025 1. ...176 -.08
|
|
941
|
+
.WSDIS ...177 -.856 ...178 -3.72
|
|
942
|
+
.WSDIS ...187 -4.656 ...188 -4.4312
|
|
943
|
+
.WSDIS ...000 -4.663
|
|
944
|
+
.C5TVN ...176 -1. ...177 -15.
|
|
945
|
+
.C5TVN ...178 -100. ...183 1.
|
|
946
|
+
.C5TVN ...184 .1614 ...187 -100.
|
|
947
|
+
.C5TVN ...188 -60.28
|
|
948
|
+
.ST13T ...043 1. ...044 -.7
|
|
949
|
+
.ST13T ...045 1. ...176 -.3
|
|
950
|
+
.ST13T ...178 6.3 ...187 6.
|
|
951
|
+
.ST13T ...188 -19.314 ...000 .0177
|
|
952
|
+
.VN0SC ...176 1. ...177 8.5
|
|
953
|
+
.VN0SC ...178 62.5 ...180 -.62
|
|
954
|
+
.VN0SC ...181 -.38 ...187 100.
|
|
955
|
+
.VN0SC ...188 55.95 ...193 .652
|
|
956
|
+
.VN0SC ...194 .652 ...000 .0005
|
|
957
|
+
.VN4VN ...176 -1. ...177 -.9
|
|
958
|
+
.VN4VN ...178 16. ...179 1.
|
|
959
|
+
.VN4VN ...187 20. ...188 -46.04
|
|
960
|
+
.VN2PH ...176 1. ...177 2.2
|
|
961
|
+
.VN2PH ...178 -16. ...187 22.4
|
|
962
|
+
.VN2PH ...188 49.12 ...194 .43
|
|
963
|
+
.VN2PH ...195 .43 ...196 -1.
|
|
964
|
+
.VN3PH ...176 1. ...177 1.1
|
|
965
|
+
.VN3PH ...178 -30. ...187 -7.4
|
|
966
|
+
.VN3PH ...188 48.08 ...192 .534
|
|
967
|
+
.VN3PH ...195 .534 ...197 -1.
|
|
968
|
+
.VN1SC ...176 1. ...177 11.
|
|
969
|
+
.VN1SC ...178 94. ...180 -.419
|
|
970
|
+
.VN1SC ...181 -.581 ...187 100.
|
|
971
|
+
.VN1SC ...188 59. ...192 .742
|
|
972
|
+
.VN1SC ...193 .742 ...000 .0005
|
|
973
|
+
.C4TS2 ...176 1. ...177 64.
|
|
974
|
+
.C4TS2 ...178 115. ...187 100.
|
|
975
|
+
.C4TS2 ...188 64. ...189 1.
|
|
976
|
+
.C4TS2 ...210 1. ...000 -2.8721
|
|
977
|
+
.C5TS2 ...176 1. ...177 15.
|
|
978
|
+
.C5TS2 ...178 100. ...187 100.
|
|
979
|
+
.C5TS2 ...188 60.28 ...189 1.
|
|
980
|
+
.C5TS2 ...210 1. ...000 -2.8721
|
|
981
|
+
.VN2S2 ...176 1. ...177 2.2
|
|
982
|
+
.VN2S2 ...178 -16. ...187 22.4
|
|
983
|
+
.VN2S2 ...188 49.12 ...189 1.
|
|
984
|
+
.VN2S2 ...210 1. ...000 -2.8721
|
|
985
|
+
.VN3S2 ...176 1. ...177 1.1
|
|
986
|
+
.VN3S2 ...178 -30. ...187 -7.4
|
|
987
|
+
.VN3S2 ...188 48.08 ...189 1.
|
|
988
|
+
.VN3S2 ...210 1. ...000 -2.8721
|
|
989
|
+
.VN4S2 ...176 1. ...177 .9
|
|
990
|
+
.VN4S2 ...178 -16. ...187 -20.
|
|
991
|
+
.VN4S2 ...188 46.04 ...189 1.
|
|
992
|
+
.VN4S2 ...210 1. ...000 -2.8721
|
|
993
|
+
.VN0S2 ...176 1. ...177 8.5
|
|
994
|
+
.VN0S2 ...178 62.5 ...187 100.
|
|
995
|
+
.VN0S2 ...188 55.95 ...189 1.
|
|
996
|
+
.VN0S2 ...210 1. ...000 -2.8721
|
|
997
|
+
.VN1RF ...176 1. ...177 11.
|
|
998
|
+
.VN1RF ...178 94. ...187 100.
|
|
999
|
+
.VN1RF ...188 59. ...264 -.71
|
|
1000
|
+
.VN1RF ...265 .71
|
|
1001
|
+
.VN2RF ...176 1. ...177 2.2
|
|
1002
|
+
.VN2RF ...178 -16. ...188 49.12
|
|
1003
|
+
.VN2RF ...187 22.4 ...264 -.74
|
|
1004
|
+
.VN2RF ...265 .74
|
|
1005
|
+
.VN3RF ...176 1. ...177 1.1
|
|
1006
|
+
.VN3RF ...178 -30. ...187 -7.4
|
|
1007
|
+
.VN3RF ...188 48.08 ...264 -.75
|
|
1008
|
+
.VN3RF ...265 .75
|
|
1009
|
+
.VN0RF ...176 1. ...177 8.5
|
|
1010
|
+
.VN0RF ...178 62.5 ...187 100.
|
|
1011
|
+
.VN0RF ...188 55.95 ...264 -.72
|
|
1012
|
+
.VN0RF ...265 .72
|
|
1013
|
+
.C4TS1 ...176 1. ...272 50.5
|
|
1014
|
+
.C4TS1 ...177 64. ...178 115.
|
|
1015
|
+
.C4TS1 ...187 100. ...188 64.
|
|
1016
|
+
.C4TS1 ...189 1. ...205 1.
|
|
1017
|
+
.C4TS1 ...206 .096 ...207 -.126
|
|
1018
|
+
.C4TS1 ...208 55. ...209 -50.
|
|
1019
|
+
.C4TS1 ...000 -2.8721
|
|
1020
|
+
.C5TS1 ...176 1. ...177 15.
|
|
1021
|
+
.C5TS1 ...272 1.5 ...178 100.
|
|
1022
|
+
.C5TS1 ...187 100. ...188 60.28
|
|
1023
|
+
.C5TS1 ...189 1. ...205 1.
|
|
1024
|
+
.C5TS1 ...206 .05 ...207 -.08
|
|
1025
|
+
.C5TS1 ...208 50. ...209 -50.
|
|
1026
|
+
.C5TS1 ...000 -2.8721
|
|
1027
|
+
.VN1S1 ...176 1. ...177 11.
|
|
1028
|
+
.VN1S1 ...178 94. ...187 100.
|
|
1029
|
+
.VN1S1 ...188 59. ...189 1.
|
|
1030
|
+
.VN1S1 ...205 1. ...206 .03
|
|
1031
|
+
.VN1S1 ...207 -.06 ...208 47.
|
|
1032
|
+
.VN1S1 ...209 -50. ...272 -2.5
|
|
1033
|
+
.VN1S1 ...000 -2.8721
|
|
1034
|
+
.VN2S1 ...176 1. ...177 2.2
|
|
1035
|
+
.VN2S1 ...178 -16. ...187 22.4
|
|
1036
|
+
.VN2S1 ...188 49.12 ...189 1.
|
|
1037
|
+
.VN2S1 ...205 1. ...206 -.06
|
|
1038
|
+
.VN2S1 ...207 .03 ...208 -50.
|
|
1039
|
+
.VN2S1 ...209 14. ...272 -11.3
|
|
1040
|
+
.VN2S1 ...000 -2.8721
|
|
1041
|
+
.VN3S1 ...176 1. ...177 1.1
|
|
1042
|
+
.VN3S1 ...178 -30. ...187 -7.4
|
|
1043
|
+
.VN3S1 ...188 48.08 ...189 1.
|
|
1044
|
+
.VN3S1 ...205 1. ...206 -.069
|
|
1045
|
+
.VN3S1 ...207 .039 ...208 -73.
|
|
1046
|
+
.VN3S1 ...209 45. ...272 -12.4
|
|
1047
|
+
.VN3S1 ...000 -2.8721
|
|
1048
|
+
.VN4S1 ...176 1. ...177 .9
|
|
1049
|
+
.VN4S1 ...178 -16. ...187 -20.
|
|
1050
|
+
.VN4S1 ...188 46.04 ...189 1.
|
|
1051
|
+
.VN4S1 ...205 1. ...206 -.083
|
|
1052
|
+
.VN4S1 ...207 .053 ...208 -68.
|
|
1053
|
+
.VN4S1 ...209 60. ...272 -12.6
|
|
1054
|
+
.VN4S1 ...000 -2.8721
|
|
1055
|
+
.VN0S1 ...176 1. ...177 8.5
|
|
1056
|
+
.VN0S1 ...178 62.5 ...187 100.
|
|
1057
|
+
.VN0S1 ...188 55.95 ...189 1.
|
|
1058
|
+
.VN0S1 ...205 1. ...206 .006
|
|
1059
|
+
.VN0S1 ...207 -.036 ...208 15.
|
|
1060
|
+
.VN0S1 ...209 -50. ...272 -5.
|
|
1061
|
+
.VN0S1 ...000 -2.8721
|
|
1062
|
+
.NJP46 ...039 3.6 ...040 -4.4
|
|
1063
|
+
.NJP46 ...041 -1. ...050 -1.
|
|
1064
|
+
.NJP46 ...176 1. ...177 6.
|
|
1065
|
+
.NJP46 ...178 26. ...187 54.
|
|
1066
|
+
.NJP46 ...188 53.08 ...189 1.
|
|
1067
|
+
.NJP46 ...000 -.0087
|
|
1068
|
+
.NJP47 ...039 4.6 ...040 -5.4
|
|
1069
|
+
.NJP47 ...041 -1. ...050 -1.
|
|
1070
|
+
.NJP47 ...176 1. ...177 7.
|
|
1071
|
+
.NJP47 ...178 27.5 ...187 54.8
|
|
1072
|
+
.NJP47 ...188 53.27 ...189 1.
|
|
1073
|
+
.NJP47 ...000 -.0087
|
|
1074
|
+
.NJP48 ...039 5.6 ...040 -6.4
|
|
1075
|
+
.NJP48 ...041 -1. ...050 -1.
|
|
1076
|
+
.NJP48 ...176 1. ...177 8.
|
|
1077
|
+
.NJP48 ...178 29. ...187 55.6
|
|
1078
|
+
.NJP48 ...188 53.46 ...189 1.
|
|
1079
|
+
.NJP48 ...000 -.0087
|
|
1080
|
+
.VNFEE ...224 1.7 ...225 -3.7
|
|
1081
|
+
.VNFEE ...226 -.26 ...227 -19.7
|
|
1082
|
+
.VNFEE ...228 -1.8 ...229 -8.2
|
|
1083
|
+
.VNFEE ...231 14.95 ...232 -31.5
|
|
1084
|
+
.VNFEE ...230 12.86 ...222 -1.
|
|
1085
|
+
.VNFEE ...246 -1. ...247 -1.
|
|
1086
|
+
.VNFEE ...176 1. ...177 10.7
|
|
1087
|
+
.VNFEE ...178 46.5 ...187 58.2
|
|
1088
|
+
.VNFEE ...188 55.39 ...189 1.
|
|
1089
|
+
.HNGWR ...014 1. ...021 1.
|
|
1090
|
+
.HNGWR ...142 -.34 ...164 -.366
|
|
1091
|
+
.HNGWR ...166 -.091 ...176 -.2857
|
|
1092
|
+
.HNGWR ...177 -1.9999 ...178 -5.3997
|
|
1093
|
+
.HNGWR ...187 -11.5709 ...188 -15.105
|
|
1094
|
+
.HNGWR ...200 -.0043 ...202 -.002
|
|
1095
|
+
.HNGWR ...260 -.00112 ...000 2.8145
|
|
1096
|
+
.INGNR ...013 1. ...021 1.
|
|
1097
|
+
.INGNR ...142 -.34 ...164 -.366
|
|
1098
|
+
.INGNR ...166 -.9088 ...176 -.2856
|
|
1099
|
+
.INGNR ...177 -1.9992 ...178 -5.3978
|
|
1100
|
+
.INGNR ...187 -11.5382 ...188 -15.105
|
|
1101
|
+
.INGNR ...200 -.0044 ...202 -.002
|
|
1102
|
+
.INGNR ...260 -.00112 ...000 2.8317
|
|
1103
|
+
.B1MW2 ...011 1. ...019 1.
|
|
1104
|
+
.B1MW2 ...034 -.135 ...145 -.266
|
|
1105
|
+
.B1MW2 ...154 -.152 ...164 -.21
|
|
1106
|
+
.B1MW2 ...166 1.4839 ...176 -.2018
|
|
1107
|
+
.B1MW2 ...177 -1.4126 ...178 -3.814
|
|
1108
|
+
.B1MW2 ...187 -11.7448 ...188 -10.7963
|
|
1109
|
+
.B1MW2 ...200 -.0172 ...202 -.008
|
|
1110
|
+
.B1MW2 ...260 -.00504 ...000 2.9089
|
|
1111
|
+
.TNTWT ...017 .746 ...058 -.29
|
|
1112
|
+
.TNTWT ...142 -.238 ...145 -.035
|
|
1113
|
+
.TNTWT ...158 -.242 ...159 -.048
|
|
1114
|
+
.TNTWT ...164 -.29 ...166 3.69
|
|
1115
|
+
.TNTWT ...176 -.1292 ...177 -.9044
|
|
1116
|
+
.TNTWT ...178 -2.1189 ...187 -5.5427
|
|
1117
|
+
.TNTWT ...188 -7.2107 ...200 -.0058
|
|
1118
|
+
.TNTWT ...202 -.006 ...260 -.00336
|
|
1119
|
+
.TNTWT ...000 3.215
|
|
1120
|
+
.TNBWT ...017 1.111 ...057 -.205
|
|
1121
|
+
.TNBWT ...142 -.238 ...145 -.035
|
|
1122
|
+
.TNBWT ...158 -.237 ...159 -.138
|
|
1123
|
+
.TNBWT ...164 -.205 ...166 2.714
|
|
1124
|
+
.TNBWT ...176 -.1292 ...177 -.9044
|
|
1125
|
+
.TNBWT ...178 -2.1189 ...187 -5.5427
|
|
1126
|
+
.TNBWT ...188 -7.2107 ...200 -.0058
|
|
1127
|
+
.TNBWT ...202 -.006 ...260 -.00336
|
|
1128
|
+
.TNBWT ...000 3.215
|
|
1129
|
+
.KNGWR ...299 1. ...012 -1.
|
|
1130
|
+
.KNGWR ...021 1. ...142 -.28
|
|
1131
|
+
.KNGWR ...164 -.467 ...166 .601
|
|
1132
|
+
.KNGWR ...176 -.2321 ...177 -1.6247
|
|
1133
|
+
.KNGWR ...178 -4.4099 ...187 -8.9823
|
|
1134
|
+
.KNGWR ...188 -12.0181 ...200 -.0069
|
|
1135
|
+
.KNGWR ...202 -.005 ...260 -.00504
|
|
1136
|
+
.KNGWR ...000 2.6929
|
|
1137
|
+
.KNGWC ...012 -1. ...299 1.
|
|
1138
|
+
.KNGWC ...022 1. ...142 -.28
|
|
1139
|
+
.KNGWC ...146 .28 ...164 -.467
|
|
1140
|
+
.KNGWC ...166 .601 ...176 -.2321
|
|
1141
|
+
.KNGWC ...177 -1.6247 ...178 -4.4099
|
|
1142
|
+
.KNGWC ...187 -8.9823 ...188 -12.0181
|
|
1143
|
+
.KNGWC ...200 -.0069 ...202 -.005
|
|
1144
|
+
.KNGWC ...260 -.00504 ...000 2.6957
|
|
1145
|
+
.TNLWT ...017 .746 ...059 -.29
|
|
1146
|
+
.TNLWT ...060 -.03 ...142 -.238
|
|
1147
|
+
.TNLWT ...145 -.035 ...158 -.26
|
|
1148
|
+
.TNLWT ...159 -.03 ...164 -.29
|
|
1149
|
+
.TNLWT ...166 3.69 ...176 -.1292
|
|
1150
|
+
.TNLWT ...177 -.9044 ...178 -2.1189
|
|
1151
|
+
.TNLWT ...187 -5.5427 ...188 -7.2107
|
|
1152
|
+
.TNLWT ...200 -.0058 ...202 -.006
|
|
1153
|
+
.TNLWT ...260 -.00336 ...000 3.215
|
|
1154
|
+
.A5MW3 ...010 1. ...020 .111
|
|
1155
|
+
.A5MW3 ...046 -.126 ...145 -.222
|
|
1156
|
+
.A5MW3 ...155 -.019 ...164 -.36
|
|
1157
|
+
.A5MW3 ...166 .3341 ...176 -.2729
|
|
1158
|
+
.A5MW3 ...177 -1.9103 ...178 -3.8479
|
|
1159
|
+
.A5MW3 ...187 -8.9328 ...188 -13.9793
|
|
1160
|
+
.A5MW3 ...200 .0039 ...202 -.001
|
|
1161
|
+
.A5MW3 ...260 -.0017 ...000 2.8771
|
|
1162
|
+
.B5MW3 ...011 1. ...020 .111
|
|
1163
|
+
.B5MW3 ...046 -.116 ...145 -.16
|
|
1164
|
+
.B5MW3 ...155 -.025 ...164 -.39
|
|
1165
|
+
.B5MW3 ...166 .0148 ...176 -.2847
|
|
1166
|
+
.B5MW3 ...177 -1.9929 ...178 -3.8435
|
|
1167
|
+
.B5MW3 ...187 -10.9325 ...188 -14.8044
|
|
1168
|
+
.B5MW3 ...200 -.0083 ...202 -.008
|
|
1169
|
+
.B5MW3 ...260 -.00504 ...000 2.9066
|
|
1170
|
+
.T5TWT ...017 .746 ...037 -.15
|
|
1171
|
+
.T5TWT ...058 -.29 ...142 -.088
|
|
1172
|
+
.T5TWT ...145 -.035 ...158 -.242
|
|
1173
|
+
.T5TWT ...159 -.048 ...164 -.29
|
|
1174
|
+
.T5TWT ...166 3.69 ...176 -.1292
|
|
1175
|
+
.T5TWT ...177 -.9044 ...178 -2.1189
|
|
1176
|
+
.T5TWT ...187 -5.5427 ...188 -7.2107
|
|
1177
|
+
.T5TWT ...200 -.0058 ...202 -.006
|
|
1178
|
+
.T5TWT ...260 -.00336 ...000 3.215
|
|
1179
|
+
.T5BWT ...017 1.111 ...037 -.15
|
|
1180
|
+
.T5BWT ...057 -.205 ...142 -.088
|
|
1181
|
+
.T5BWT ...145 -.035 ...158 -.237
|
|
1182
|
+
.T5BWT ...159 -.138 ...164 -.205
|
|
1183
|
+
.T5BWT ...166 2.724 ...176 -.1292
|
|
1184
|
+
.T5BWT ...177 -.9044 ...178 -2.1189
|
|
1185
|
+
.T5BWT ...187 -5.5427 ...188 -7.2107
|
|
1186
|
+
.T5BWT ...200 -.0058 ...202 -.006
|
|
1187
|
+
.T5BWT ...260 -.00336 ...000 3.215
|
|
1188
|
+
.T5LWT ...017 .746 ...037 -.15
|
|
1189
|
+
.T5LWT ...059 -.29 ...060 -.03
|
|
1190
|
+
.T5LWT ...142 -.088 ...145 -.035
|
|
1191
|
+
.T5LWT ...158 -.26 ...159 -.03
|
|
1192
|
+
.T5LWT ...164 -.29 ...166 3.69
|
|
1193
|
+
.T5LWT ...176 -.1292 ...177 -.9044
|
|
1194
|
+
.T5LWT ...178 -2.1189 ...187 -5.5427
|
|
1195
|
+
.T5LWT ...188 -7.2107 ...200 -.0058
|
|
1196
|
+
.T5LWT ...202 -.006 ...260 -.00336
|
|
1197
|
+
.T5LWT ...000 3.215
|
|
1198
|
+
.B1MN3 ...011 1. ...020 .111
|
|
1199
|
+
.B1MN3 ...034 -.116 ...145 -.306
|
|
1200
|
+
.B1MN3 ...164 -.342 ...166 .5595
|
|
1201
|
+
.B1MN3 ...176 -.2018 ...177 -1.4126
|
|
1202
|
+
.B1MN3 ...178 -3.814 ...187 -11.7448
|
|
1203
|
+
.B1MN3 ...188 -10.7963 ...200 -.0172
|
|
1204
|
+
.B1MN3 ...202 -.008 ...260 -.00504
|
|
1205
|
+
.B1MN3 ...000 2.9061
|
|
1206
|
+
.QKMW2 ...026 -.1343 ...016 1.
|
|
1207
|
+
.QKMW2 ...019 1. ...027 -.235
|
|
1208
|
+
.QKMW2 ...145 -.115 ...153 -.062
|
|
1209
|
+
.QKMW2 ...154 -.146 ...164 -.14
|
|
1210
|
+
.QKMW2 ...166 .5247 ...176 -.2755
|
|
1211
|
+
.QKMW2 ...177 -1.9285 ...178 -5.2345
|
|
1212
|
+
.QKMW2 ...187 -6.9977 ...188 -14.5023
|
|
1213
|
+
.QKMW2 ...200 -.0125 ...202 -.009
|
|
1214
|
+
.QKMW2 ...260 -.0028 ...000 2.9969
|
|
1215
|
+
.IKMW2 ...026 -.1293 ...013 1.
|
|
1216
|
+
.IKMW2 ...019 1. ...027 -.19
|
|
1217
|
+
.IKMW2 ...145 -.19 ...153 -.037
|
|
1218
|
+
.IKMW2 ...154 -.193 ...164 -.16
|
|
1219
|
+
.IKMW2 ...166 1.589 ...176 -.2165
|
|
1220
|
+
.IKMW2 ...177 -1.5155 ...178 -6.5167
|
|
1221
|
+
.IKMW2 ...187 -13.8127 ...188 -11.6585
|
|
1222
|
+
.IKMW2 ...200 -.0095 ...202 -.002
|
|
1223
|
+
.IKMW2 ...260 -.00112 ...000 2.8409
|
|
1224
|
+
.JNGW2 ...015 1. ...019 1.
|
|
1225
|
+
.JNGW2 ...142 -.299 ...153 -.05
|
|
1226
|
+
.JNGW2 ...154 -.175 ...164 -.18
|
|
1227
|
+
.JNGW2 ...166 1.787 ...176 -.1965
|
|
1228
|
+
.JNGW2 ...177 -1.3755 ...178 -5.8164
|
|
1229
|
+
.JNGW2 ...179 -.085 ...187 -12.3599
|
|
1230
|
+
.JNGW2 ...188 -10.5776 ...200 -.0065
|
|
1231
|
+
.JNGW2 ...202 -.004 ...260 -.00224
|
|
1232
|
+
.JNGW2 ...000 2.8236
|
|
1233
|
+
.AKMW2 ...026 -.1143 ...010 1.
|
|
1234
|
+
.AKMW2 ...019 1. ...027 -.2
|
|
1235
|
+
.AKMW2 ...145 -.16 ...153 -.052
|
|
1236
|
+
.AKMW2 ...154 -.2 ...164 -.16
|
|
1237
|
+
.AKMW2 ...166 1.5197 ...176 -.2232
|
|
1238
|
+
.AKMW2 ...177 -1.5624 ...178 -6.071
|
|
1239
|
+
.AKMW2 ...187 -9.7315 ...188 -11.3765
|
|
1240
|
+
.AKMW2 ...200 -.0008 ...202 -.001
|
|
1241
|
+
.AKMW2 ...260 -.00168 ...000 2.8796
|
|
1242
|
+
.KN8W3 ...012 -1. ...020 .132
|
|
1243
|
+
.KN8W3 ...299 1. ...032 -.7
|
|
1244
|
+
.KN8W3 ...033 -.196 ...155 -.06
|
|
1245
|
+
.KN8W3 ...164 -.437 ...166 1.0927
|
|
1246
|
+
.KN8W3 ...176 -.1429 ...177 -1.0003
|
|
1247
|
+
.KN8W3 ...178 -4.2156 ...179 -.08
|
|
1248
|
+
.KN8W3 ...187 -9.7029 ...188 -7.638
|
|
1249
|
+
.KN8W3 ...200 -.0161 ...202 -.005
|
|
1250
|
+
.KN8W3 ...260 -.00504 ...000 2.6992
|
|
1251
|
+
.BKMW2 ...026 -.1086 ...011 1.
|
|
1252
|
+
.BKMW2 ...019 1. ...027 -.19
|
|
1253
|
+
.BKMW2 ...145 -.14 ...153 -.042
|
|
1254
|
+
.BKMW2 ...154 -.187 ...164 -.21
|
|
1255
|
+
.BKMW2 ...166 1.484 ...176 -.1963
|
|
1256
|
+
.BKMW2 ...177 -1.3741 ...178 -4.829
|
|
1257
|
+
.BKMW2 ...187 -11.7976 ...188 -10.5256
|
|
1258
|
+
.BKMW2 ...200 -.0177 ...202 -.008
|
|
1259
|
+
.BKMW2 ...260 -.00504 ...000 2.9089
|
|
1260
|
+
.KRMN2 ...299 1. ...028 -.0777
|
|
1261
|
+
.KRMN2 ...012 -1. ...019 1.
|
|
1262
|
+
.KRMN2 ...029 -.11152 ...145 -.12
|
|
1263
|
+
.KRMN2 ...153 -.08 ...154 -.182
|
|
1264
|
+
.KRMN2 ...164 -.255 ...166 2.274
|
|
1265
|
+
.KRMN2 ...176 -.2015 ...177 -1.4105
|
|
1266
|
+
.KRMN2 ...178 -3.9091 ...187 -9.1481
|
|
1267
|
+
.KRMN2 ...188 -10.4982 ...200 -.0115
|
|
1268
|
+
.KRMN2 ...202 -.005 ...260 -.00504
|
|
1269
|
+
.KRMN2 ...000 2.7023
|
|
1270
|
+
.QKMN3 ...016 1. ...020 .118
|
|
1271
|
+
.QKMN3 ...026 -.1229 ...027 -.215
|
|
1272
|
+
.QKMN3 ...145 -.155 ...155 -.075
|
|
1273
|
+
.QKMN3 ...164 -.253 ...166 -.3722
|
|
1274
|
+
.QKMN3 ...176 -.2755 ...177 -1.9285
|
|
1275
|
+
.QKMN3 ...178 -5.2345 ...187 -6.9977
|
|
1276
|
+
.QKMN3 ...188 -14.5023 ...200 -.0125
|
|
1277
|
+
.QKMN3 ...202 -.009 ...260 -.0028
|
|
1278
|
+
.QKMN3 ...000 2.9941
|
|
1279
|
+
.A1GW2 ...010 1. ...019 1.
|
|
1280
|
+
.A1GW2 ...034 -.141 ...142 -.212
|
|
1281
|
+
.A1GW2 ...153 -.054 ...154 -.2
|
|
1282
|
+
.A1GW2 ...164 -.16 ...166 1.5197
|
|
1283
|
+
.A1GW2 ...176 -.2286 ...177 -1.6002
|
|
1284
|
+
.A1GW2 ...178 -3.7033 ...187 -9.5326
|
|
1285
|
+
.A1GW2 ...188 -11.8026 ...200 -.0004
|
|
1286
|
+
.A1GW2 ...202 -.001 ...260 -.00168
|
|
1287
|
+
.A1GW2 ...000 2.8797
|
|
1288
|
+
.B1GW2 ...011 1. ...019 1.
|
|
1289
|
+
.B1GW2 ...034 -.135 ...142 -.216
|
|
1290
|
+
.B1GW2 ...153 -.015 ...154 -.187
|
|
1291
|
+
.B1GW2 ...164 -.21 ...166 1.4839
|
|
1292
|
+
.B1GW2 ...176 -.2018 ...177 -1.4126
|
|
1293
|
+
.B1GW2 ...178 -3.814 ...187 -11.7448
|
|
1294
|
+
.B1GW2 ...188 -10.7963 ...200 -.0172
|
|
1295
|
+
.B1GW2 ...202 -.008 ...260 -.00504
|
|
1296
|
+
.B1GW2 ...000 2.9089
|
|
1297
|
+
.IRGW3 ...028 -.1086 ...013 1.
|
|
1298
|
+
.IRGW3 ...020 .111 ...029 -.1558
|
|
1299
|
+
.IRGW3 ...142 -.15 ...155 -.075
|
|
1300
|
+
.IRGW3 ...164 -.355 ...166 .5765
|
|
1301
|
+
.IRGW3 ...176 -.2165 ...177 -1.5155
|
|
1302
|
+
.IRGW3 ...178 -6.6249 ...187 -13.8127
|
|
1303
|
+
.IRGW3 ...188 -11.6585 ...200 -.0095
|
|
1304
|
+
.IRGW3 ...202 -.002 ...260 -.00112
|
|
1305
|
+
.IRGW3 ...000 2.8381
|
|
1306
|
+
.IKMN3 ...013 1. ...020 .118
|
|
1307
|
+
.IKMN3 ...026 -.0983 ...027 -.172
|
|
1308
|
+
.IKMN3 ...145 -.216 ...155 -.035
|
|
1309
|
+
.IKMN3 ...164 -.323 ...166 .435
|
|
1310
|
+
.IKMN3 ...176 -.2424 ...177 -1.6968
|
|
1311
|
+
.IKMN3 ...178 -6.3266 ...187 -13.2108
|
|
1312
|
+
.IKMN3 ...188 -12.9563 ...200 -.0076
|
|
1313
|
+
.IKMN3 ...202 -.002 ...260 -.00112
|
|
1314
|
+
.IKMN3 ...000 2.8383
|
|
1315
|
+
.IKMN4 ...013 1. ...020 .139
|
|
1316
|
+
.IKMN4 ...026 -.0983 ...027 -.172
|
|
1317
|
+
.IKMN4 ...145 -.216 ...155 -.118
|
|
1318
|
+
.IKMN4 ...164 -.24 ...166 1.6186
|
|
1319
|
+
.IKMN4 ...176 -.2421 ...177 -1.6947
|
|
1320
|
+
.IKMN4 ...178 -6.3914 ...187 -13.1702
|
|
1321
|
+
.IKMN4 ...188 -12.9378 ...200 -.0079
|
|
1322
|
+
.IKMN4 ...202 -.002 ...260 -.00112
|
|
1323
|
+
.IKMN4 ...000 2.8383
|
|
1324
|
+
.AKMW3 ...010 1. ...020 .111
|
|
1325
|
+
.AKMW3 ...026 -.1143 ...027 -.2
|
|
1326
|
+
.AKMW3 ...145 -.16 ...155 -.052
|
|
1327
|
+
.AKMW3 ...164 -.36 ...166 .3341
|
|
1328
|
+
.AKMW3 ...176 -.2232 ...177 -1.5624
|
|
1329
|
+
.AKMW3 ...178 -6.071 ...187 -9.7315
|
|
1330
|
+
.AKMW3 ...188 -11.3765 ...200 -.0008
|
|
1331
|
+
.AKMW3 ...202 -.001 ...260 -.00168
|
|
1332
|
+
.AKMW3 ...000 2.8768
|
|
1333
|
+
.CNGW3 ...294 1. ...020 .114
|
|
1334
|
+
.CNGW3 ...142 -.252 ...155 -.081
|
|
1335
|
+
.CNGW3 ...000 2.38 ...164 -.493
|
|
1336
|
+
.CNGW3 ...166 3.436 ...176 -.1409
|
|
1337
|
+
.CNGW3 ...177 -.9863 ...178 -2.8462
|
|
1338
|
+
.CNGW3 ...179 -.026 ...187 -7.045
|
|
1339
|
+
.CNGW3 ...188 -7.7143 ...200 -.0031
|
|
1340
|
+
.CNGW3 ...202 -.003 ...260 -.00056
|
|
1341
|
+
.A5GW3 ...010 1. ...020 .111
|
|
1342
|
+
.A5GW3 ...046 -.126 ...142 -.164
|
|
1343
|
+
.A5GW3 ...155 -.077 ...164 -.36
|
|
1344
|
+
.A5GW3 ...166 .3341 ...176 -.2729
|
|
1345
|
+
.A5GW3 ...177 -1.9103 ...178 -3.8479
|
|
1346
|
+
.A5GW3 ...187 -8.9238 ...188 -13.9397
|
|
1347
|
+
.A5GW3 ...200 .0039 ...202 -.001
|
|
1348
|
+
.A5GW3 ...260 -.0017 ...000 2.8771
|
|
1349
|
+
.B5GW3 ...011 1. ...020 .111
|
|
1350
|
+
.B5GW3 ...046 -.116 ...142 -.11
|
|
1351
|
+
.B5GW3 ...155 -.075 ...164 -.39
|
|
1352
|
+
.B5GW3 ...166 .0148 ...176 -.2847
|
|
1353
|
+
.B5GW3 ...177 -1.9929 ...178 -3.8435
|
|
1354
|
+
.B5GW3 ...187 -10.9325 ...188 -14.8044
|
|
1355
|
+
.B5GW3 ...200 -.0083 ...202 -.008
|
|
1356
|
+
.B5GW3 ...260 -.00504 ...000 2.9066
|
|
1357
|
+
.INGW3 ...013 1. ...020 .115
|
|
1358
|
+
.INGW3 ...142 -.306 ...155 -.066
|
|
1359
|
+
.INGW3 ...164 -.334 ...166 .346
|
|
1360
|
+
.INGW3 ...176 -.1882 ...177 -1.3174
|
|
1361
|
+
.INGW3 ...178 -6.7376 ...179 -.09
|
|
1362
|
+
.INGW3 ...187 -14.2279 ...188 -10.2381
|
|
1363
|
+
.INGW3 ...200 -.0118 ...202 -.002
|
|
1364
|
+
.INGW3 ...260 -.00112 ...000 2.8379
|
|
1365
|
+
.A1GW3 ...010 1. ...020 .111
|
|
1366
|
+
.A1GW3 ...034 -.141 ...142 -.212
|
|
1367
|
+
.A1GW3 ...155 -.054 ...164 -.36
|
|
1368
|
+
.A1GW3 ...166 .3341 ...176 -.2286
|
|
1369
|
+
.A1GW3 ...177 -1.6002 ...178 -3.7033
|
|
1370
|
+
.A1GW3 ...187 -9.5326 ...188 -11.8026
|
|
1371
|
+
.A1GW3 ...200 -.0004 ...202 -.001
|
|
1372
|
+
.A1GW3 ...260 -.00168 ...000 2.8769
|
|
1373
|
+
.B1GW3 ...011 1. ...020 .111
|
|
1374
|
+
.B1GW3 ...034 -.135 ...142 -.216
|
|
1375
|
+
.B1GW3 ...155 -.022 ...164 -.39
|
|
1376
|
+
.B1GW3 ...166 .0148 ...176 -.2018
|
|
1377
|
+
.B1GW3 ...177 -1.4126 ...178 -3.814
|
|
1378
|
+
.B1GW3 ...187 -11.7448 ...188 -10.7963
|
|
1379
|
+
.B1GW3 ...200 -.0172 ...202 -.008
|
|
1380
|
+
.B1GW3 ...260 -.00504 ...000 2.9061
|
|
1381
|
+
.KTGW1 ...299 1. ...012 -1.
|
|
1382
|
+
.KTGW1 ...018 1. ...053 -.152
|
|
1383
|
+
.KTGW1 ...142 -.143 ...149 -.046
|
|
1384
|
+
.KTGW1 ...150 -.105 ...151 -.065
|
|
1385
|
+
.KTGW1 ...152 -.065 ...164 -.255
|
|
1386
|
+
.KTGW1 ...166 2.274 ...176 -.1388
|
|
1387
|
+
.KTGW1 ...177 -.9716 ...178 -4.2334
|
|
1388
|
+
.KTGW1 ...187 -9.6882 ...188 -7.423
|
|
1389
|
+
.KTGW1 ...200 -.0162 ...202 -.005
|
|
1390
|
+
.KTGW1 ...260 -.00504 ...000 2.6988
|
|
1391
|
+
.KWGW1 ...012 -1. ...299 1.
|
|
1392
|
+
.KWGW1 ...018 1. ...141 -.245
|
|
1393
|
+
.KWGW1 ...142 -.245 ...150 -.1
|
|
1394
|
+
.KWGW1 ...151 -.065 ...152 -.065
|
|
1395
|
+
.KWGW1 ...164 -.255 ...166 2.274
|
|
1396
|
+
.KWGW1 ...176 -.1938 ...177 -1.3566
|
|
1397
|
+
.KWGW1 ...178 -3.9148 ...187 -9.1474
|
|
1398
|
+
.KWGW1 ...188 -10.144 ...200 -.0122
|
|
1399
|
+
.KWGW1 ...202 -.005 ...025 -.05
|
|
1400
|
+
.KWGW1 ...260 -.00504 ...000 2.6992
|
|
1401
|
+
.KKMN1 ...299 1. ...026 -.0777
|
|
1402
|
+
.KKMN1 ...012 -1. ...018 1.
|
|
1403
|
+
.KKMN1 ...027 -.136 ...145 -.12
|
|
1404
|
+
.KKMN1 ...149 -.027 ...150 -.105
|
|
1405
|
+
.KKMN1 ...151 -.065 ...152 -.065
|
|
1406
|
+
.KKMN1 ...164 -.255 ...166 2.274
|
|
1407
|
+
.KKMN1 ...176 -.2015 ...177 -1.4105
|
|
1408
|
+
.KKMN1 ...178 -3.9091 ...187 -9.1481
|
|
1409
|
+
.KKMN1 ...188 -10.4982 ...200 -.0115
|
|
1410
|
+
.KKMN1 ...202 -.005 ...260 -.00504
|
|
1411
|
+
.KKMN1 ...000 2.6992
|
|
1412
|
+
.K5GW1 ...299 1. ...012 -1.
|
|
1413
|
+
.K5GW1 ...018 1. ...046 -.1
|
|
1414
|
+
.K5GW1 ...142 -.07 ...149 -.082
|
|
1415
|
+
.K5GW1 ...150 -.105 ...151 -.065
|
|
1416
|
+
.K5GW1 ...152 -.065 ...164 -.255
|
|
1417
|
+
.K5GW1 ...166 2.274 ...176 -.2377
|
|
1418
|
+
.K5GW1 ...177 -1.6639 ...178 -4.5638
|
|
1419
|
+
.K5GW1 ...187 -8.9851 ...188 -12.2986
|
|
1420
|
+
.K5GW1 ...200 -.0063 ...202 -.005
|
|
1421
|
+
.K5GW1 ...260 -.00504 ...000 2.6994
|
|
1422
|
+
.QKGW2 ...026 -.1343 ...016 1.
|
|
1423
|
+
.QKGW2 ...019 1. ...027 -.235
|
|
1424
|
+
.QKGW2 ...142 -.09 ...153 -.087
|
|
1425
|
+
.QKGW2 ...154 -.146 ...164 -.14
|
|
1426
|
+
.QKGW2 ...166 .5247 ...176 -.2755
|
|
1427
|
+
.QKGW2 ...177 -1.9285 ...178 -5.2345
|
|
1428
|
+
.QKGW2 ...187 -6.9977 ...188 -14.5023
|
|
1429
|
+
.QKGW2 ...200 -.0125 ...202 -.009
|
|
1430
|
+
.QKGW2 ...260 -.0028 ...000 2.9969
|
|
1431
|
+
.K1GW1 ...299 1. ...012 -1.
|
|
1432
|
+
.K1GW1 ...018 1. ...034 -.11
|
|
1433
|
+
.K1GW1 ...142 -.129 ...149 -.052
|
|
1434
|
+
.K1GW1 ...150 -.105 ...151 -.065
|
|
1435
|
+
.K1GW1 ...152 -.065 ...164 -.255
|
|
1436
|
+
.K1GW1 ...166 2.274 ...176 -.1928
|
|
1437
|
+
.K1GW1 ...177 -1.3494 ...178 -3.8946
|
|
1438
|
+
.K1GW1 ...187 -9.1474 ...188 -10.0719
|
|
1439
|
+
.K1GW1 ...200 -.0122 ...202 -.005
|
|
1440
|
+
.K1GW1 ...260 -.00504 ...000 2.6992
|
|
1441
|
+
.IKGW2 ...026 -.1293 ...013 1.
|
|
1442
|
+
.IKGW2 ...019 1. ...027 -.19
|
|
1443
|
+
.IKGW2 ...142 -.15 ...153 -.077
|
|
1444
|
+
.IKGW2 ...154 -.193 ...164 -.16
|
|
1445
|
+
.IKGW2 ...166 1.589 ...176 -.2165
|
|
1446
|
+
.IKGW2 ...177 -1.5155 ...178 -6.5167
|
|
1447
|
+
.IKGW2 ...187 -13.8127 ...188 -11.6585
|
|
1448
|
+
.IKGW2 ...200 -.0095 ...202 -.002
|
|
1449
|
+
.IKGW2 ...260 -.00112 ...000 2.8409
|
|
1450
|
+
.KNGW1 ...299 1. ...012 -1.
|
|
1451
|
+
.KNGW1 ...018 1. ...142 -.28
|
|
1452
|
+
.KNGW1 ...150 -.082 ...151 -.065
|
|
1453
|
+
.KNGW1 ...152 -.065 ...164 -.255
|
|
1454
|
+
.KNGW1 ...166 2.274 ...176 -.1429
|
|
1455
|
+
.KNGW1 ...177 -1.0003 ...178 -4.2156
|
|
1456
|
+
.KNGW1 ...179 -.08 ...187 -9.7029
|
|
1457
|
+
.KNGW1 ...188 -7.638 ...200 -.0161
|
|
1458
|
+
.KNGW1 ...202 -.005 ...260 -.00504
|
|
1459
|
+
.KNGW1 ...000 2.6989
|
|
1460
|
+
.A4GW2 ...010 1. ...019 1.
|
|
1461
|
+
.A4GW2 ...039 -.4248 ...040 .2832
|
|
1462
|
+
.A4GW2 ...041 -.177 ...154 -.2
|
|
1463
|
+
.A4GW2 ...164 -.16 ...166 1.5197
|
|
1464
|
+
.A4GW2 ...176 -.1792 ...177 -1.2544
|
|
1465
|
+
.A4GW2 ...178 -3.7811 ...187 -10.4474
|
|
1466
|
+
.A4GW2 ...188 -9.3901 ...200 -.0048
|
|
1467
|
+
.A4GW2 ...202 -.001 ...260 -.00168
|
|
1468
|
+
.A4GW2 ...000 2.8794
|
|
1469
|
+
.AKGW2 ...026 -.1143 ...010 1.
|
|
1470
|
+
.AKGW2 ...019 1. ...027 -.2
|
|
1471
|
+
.AKGW2 ...142 -.104 ...153 -.108
|
|
1472
|
+
.AKGW2 ...154 -.2 ...164 -.16
|
|
1473
|
+
.AKGW2 ...166 1.52 ...176 -.2232
|
|
1474
|
+
.AKGW2 ...177 -1.5624 ...178 -4.955
|
|
1475
|
+
.AKGW2 ...187 -9.7315 ...188 -11.5484
|
|
1476
|
+
.AKGW2 ...200 -.0008 ...202 -.001
|
|
1477
|
+
.AKGW2 ...260 -.00168 ...000 2.8796
|
|
1478
|
+
.BKGW2 ...026 -.1086 ...011 1.
|
|
1479
|
+
.BKGW2 ...019 1. ...027 -.19
|
|
1480
|
+
.BKGW2 ...142 -.09 ...153 -.092
|
|
1481
|
+
.BKGW2 ...154 -.187 ...164 -.21
|
|
1482
|
+
.BKGW2 ...166 1.4839 ...176 -.1964
|
|
1483
|
+
.BKGW2 ...177 -1.3748 ...178 -4.8511
|
|
1484
|
+
.BKGW2 ...187 -11.8036 ...188 -10.531
|
|
1485
|
+
.BKGW2 ...200 -.0176 ...202 -.008
|
|
1486
|
+
.BKGW2 ...260 -.00504 ...000 2.9089
|
|
1487
|
+
.B4GW2 ...011 1. ...019 1.
|
|
1488
|
+
.B4GW2 ...039 -.3984 ...040 .2656
|
|
1489
|
+
.B4GW2 ...041 -.166 ...142 -.094
|
|
1490
|
+
.B4GW2 ...153 -.045 ...154 -.283
|
|
1491
|
+
.B4GW2 ...164 -.21 ...166 1.4839
|
|
1492
|
+
.B4GW2 ...176 -.146 ...177 -1.022
|
|
1493
|
+
.B4GW2 ...178 -6.5846 ...187 -12.2932
|
|
1494
|
+
.B4GW2 ...188 -7.976 ...200 -.021
|
|
1495
|
+
.B4GW2 ...202 -.008 ...260 -.00504
|
|
1496
|
+
.B4GW2 ...000 2.9086
|
|
1497
|
+
.C4GW3 ...294 1. ...020 .114
|
|
1498
|
+
.C4GW3 ...000 2.38 ...039 -.3504
|
|
1499
|
+
.C4GW3 ...040 .2336 ...041 -.146
|
|
1500
|
+
.C4GW3 ...142 -.124 ...155 -.118
|
|
1501
|
+
.C4GW3 ...164 -.493 ...166 3.436
|
|
1502
|
+
.C4GW3 ...176 -.1089 ...177 -.7623
|
|
1503
|
+
.C4GW3 ...178 -2.5918 ...187 -7.2527
|
|
1504
|
+
.C4GW3 ...188 -6.0178 ...200 -.0061
|
|
1505
|
+
.C4GW3 ...202 -.003 ...260 -.00056
|
|
1506
|
+
.QKGW3 ...016 1. ...020 .118
|
|
1507
|
+
.QKGW3 ...026 -.1343 ...027 -.235
|
|
1508
|
+
.QKGW3 ...142 -.09 ...155 -.12
|
|
1509
|
+
.QKGW3 ...164 -.253 ...166 -.28
|
|
1510
|
+
.QKGW3 ...176 -.2756 ...177 -1.9292
|
|
1511
|
+
.QKGW3 ...178 -5.264 ...187 -7.0278
|
|
1512
|
+
.QKGW3 ...188 -14.5076 ...200 -.0124
|
|
1513
|
+
.QKGW3 ...202 -.009 ...260 -.0028
|
|
1514
|
+
.QKGW3 ...000 2.9941
|
|
1515
|
+
.QKGW4 ...016 1. ...020 .139
|
|
1516
|
+
.QKGW4 ...026 -.1343 ...027 -.235
|
|
1517
|
+
.QKGW4 ...142 -.09 ...155 -.203
|
|
1518
|
+
.QKGW4 ...164 -.17 ...166 .3468
|
|
1519
|
+
.QKGW4 ...176 -.2755 ...177 -1.9285
|
|
1520
|
+
.QKGW4 ...178 -4.408 ...187 -6.9977
|
|
1521
|
+
.QKGW4 ...188 -14.5023 ...200 -.0125
|
|
1522
|
+
.QKGW4 ...202 -.009 ...260 -.0028
|
|
1523
|
+
.QKGW4 ...000 2.9941
|
|
1524
|
+
.A4GW3 ...010 1. ...020 .111
|
|
1525
|
+
.A4GW3 ...039 -.4248 ...040 .2832
|
|
1526
|
+
.A4GW3 ...041 -.177 ...142 -.23
|
|
1527
|
+
.A4GW3 ...155 -.045 ...164 -.36
|
|
1528
|
+
.A4GW3 ...166 .3341 ...176 -.1792
|
|
1529
|
+
.A4GW3 ...177 -1.2544 ...178 -3.7811
|
|
1530
|
+
.A4GW3 ...187 -10.4474 ...188 -9.3901
|
|
1531
|
+
.A4GW3 ...200 -.0048 ...202 -.001
|
|
1532
|
+
.A4GW3 ...260 -.00168 ...000 2.8766
|
|
1533
|
+
.BKGW3 ...011 1. ...020 .111
|
|
1534
|
+
.BKGW3 ...026 -.1086 ...027 -.19
|
|
1535
|
+
.BKGW3 ...142 -.09 ...155 -.099
|
|
1536
|
+
.BKGW3 ...164 -.39 ...166 1.5031
|
|
1537
|
+
.BKGW3 ...176 -.1964 ...177 -1.3748
|
|
1538
|
+
.BKGW3 ...178 -4.8511 ...187 -11.8036
|
|
1539
|
+
.BKGW3 ...188 -10.531 ...200 -.0176
|
|
1540
|
+
.BKGW3 ...202 -.008 ...260 -.00504
|
|
1541
|
+
.BKGW3 ...000 2.9061
|
|
1542
|
+
.B4GW3 ...011 1. ...020 .111
|
|
1543
|
+
.B4GW3 ...039 -.3984 ...040 .2656
|
|
1544
|
+
.B4GW3 ...041 -.166 ...142 -.094
|
|
1545
|
+
.B4GW3 ...155 -.148 ...164 -.39
|
|
1546
|
+
.B4GW3 ...166 1.5031 ...176 -.146
|
|
1547
|
+
.B4GW3 ...177 -1.022 ...178 -6.5846
|
|
1548
|
+
.B4GW3 ...187 -12.2932 ...188 -7.976
|
|
1549
|
+
.B4GW3 ...200 -.021 ...202 -.008
|
|
1550
|
+
.B4GW3 ...260 -.00504 ...000 2.9058
|
|
1551
|
+
.KNGW2 ...299 1. ...012 -1.
|
|
1552
|
+
.KNGW2 ...019 1. ...142 -.28
|
|
1553
|
+
.KNGW2 ...154 -.212 ...164 -.255
|
|
1554
|
+
.KNGW2 ...166 .2274 ...176 -.1429
|
|
1555
|
+
.KNGW2 ...177 -1.0003 ...178 -4.2156
|
|
1556
|
+
.KNGW2 ...179 -.08 ...187 -9.7029
|
|
1557
|
+
.KNGW2 ...188 -7.638 ...200 -.0161
|
|
1558
|
+
.KNGW2 ...202 -.005 ...260 -.00504
|
|
1559
|
+
.KNGW2 ...000 2.702
|
|
1560
|
+
.K5GW3 ...012 -1. ...020 .114
|
|
1561
|
+
.K5GW3 ...299 1. ...046 -.1
|
|
1562
|
+
.K5GW3 ...142 -.07 ...155 -.12
|
|
1563
|
+
.K5GW3 ...164 -.452 ...166 .786
|
|
1564
|
+
.K5GW3 ...176 -.2377 ...177 -1.6639
|
|
1565
|
+
.K5GW3 ...178 -4.5638 ...187 -8.9851
|
|
1566
|
+
.K5GW3 ...188 -12.2986 ...200 -.0063
|
|
1567
|
+
.K5GW3 ...202 -.005 ...260 -.00504
|
|
1568
|
+
.K5GW3 ...000 2.6997
|
|
1569
|
+
.K5GW4 ...012 -1. ...020 .139
|
|
1570
|
+
.K5GW4 ...299 1. ...046 -.1
|
|
1571
|
+
.K5GW4 ...142 -.07 ...155 -.242
|
|
1572
|
+
.K5GW4 ...164 -.33 ...166 2.897
|
|
1573
|
+
.K5GW4 ...176 -.2377 ...177 -1.6639
|
|
1574
|
+
.K5GW4 ...178 -4.5638 ...187 -8.9851
|
|
1575
|
+
.K5GW4 ...188 -12.2986 ...200 -.0063
|
|
1576
|
+
.K5GW4 ...202 -.005 ...260 -.00504
|
|
1577
|
+
.K5GW4 ...000 2.6997
|
|
1578
|
+
.K1GW3 ...012 -1. ...020 .116
|
|
1579
|
+
.K1GW3 ...034 -.11 ...142 -.129
|
|
1580
|
+
.K1GW3 ...155 -.142 ...164 -.4
|
|
1581
|
+
.K1GW3 ...166 1.249 ...176 -.1928
|
|
1582
|
+
.K1GW3 ...177 -1.3496 ...178 -3.8946
|
|
1583
|
+
.K1GW3 ...187 -9.1474 ...188 -10.0719
|
|
1584
|
+
.K1GW3 ...200 -.0122 ...202 -.005
|
|
1585
|
+
.K1GW3 ...260 -.00504 ...000 2.6995
|
|
1586
|
+
.K1GW3 ...299 1.
|
|
1587
|
+
.K1GW4 ...012 -1. ...020 .139
|
|
1588
|
+
.K1GW4 ...299 1. ...034 -.11
|
|
1589
|
+
.K1GW4 ...142 -.129 ...155 -.212
|
|
1590
|
+
.K1GW4 ...164 -.33 ...166 2.897
|
|
1591
|
+
.K1GW4 ...176 -.1928 ...177 -1.3496
|
|
1592
|
+
.K1GW4 ...178 -3.8946 ...187 -9.1002
|
|
1593
|
+
.K1GW4 ...188 -10.0719 ...200 -.0122
|
|
1594
|
+
.K1GW4 ...202 -.005 ...260 -.00504
|
|
1595
|
+
.K1GW4 ...000 2.6995
|
|
1596
|
+
.KNGW3 ...012 -1. ...020 .118
|
|
1597
|
+
.KNGW3 ...299 1. ...142 -.25
|
|
1598
|
+
.KNGW3 ...155 -.06 ...164 -.437
|
|
1599
|
+
.KNGW3 ...166 .955 ...176 -.1429
|
|
1600
|
+
.KNGW3 ...177 -1.0003 ...178 -4.2156
|
|
1601
|
+
.KNGW3 ...179 -.08 ...187 -9.7029
|
|
1602
|
+
.KNGW3 ...188 -7.638 ...200 -.0161
|
|
1603
|
+
.KNGW3 ...202 -.005 ...260 -.00504
|
|
1604
|
+
.KNGW3 ...000 2.6992
|
|
1605
|
+
.KNGW4 ...012 -1. ...020 .139
|
|
1606
|
+
.KNGW4 ...299 1. ...142 -.25
|
|
1607
|
+
.KNGW4 ...155 -.167 ...164 -.33
|
|
1608
|
+
.KNGW4 ...166 2.897 ...176 -.1429
|
|
1609
|
+
.KNGW4 ...177 -1.0003 ...178 -4.2156
|
|
1610
|
+
.KNGW4 ...179 -.08 ...187 -9.7029
|
|
1611
|
+
.KNGW4 ...188 -7.638 ...200 -.0161
|
|
1612
|
+
.KNGW4 ...202 -.005 ...260 -.00504
|
|
1613
|
+
.KNGW4 ...000 2.6992
|
|
1614
|
+
.K4GW1 ...299 1. ...012 -1.
|
|
1615
|
+
.K4GW1 ...018 1. ...039 -.3648
|
|
1616
|
+
.K4GW1 ...040 .2432 ...041 -.152
|
|
1617
|
+
.K4GW1 ...142 -.143 ...149 -.046
|
|
1618
|
+
.K4GW1 ...150 -.105 ...151 -.065
|
|
1619
|
+
.K4GW1 ...152 -.065 ...164 -.255
|
|
1620
|
+
.K4GW1 ...166 2.274 ...176 -.1388
|
|
1621
|
+
.K4GW1 ...177 -.9716 ...178 -4.2334
|
|
1622
|
+
.K4GW1 ...187 -9.6882 ...188 -7.43
|
|
1623
|
+
.K4GW1 ...200 -.0162 ...202 -.005
|
|
1624
|
+
.K4GW1 ...260 -.00504 ...000 2.6988
|
|
1625
|
+
.K4GW2 ...299 1. ...012 -1.
|
|
1626
|
+
.K4GW2 ...019 1. ...039 -.3648
|
|
1627
|
+
.K4GW2 ...040 .2432 ...041 -.152
|
|
1628
|
+
.K4GW2 ...142 -.143 ...153 -.096
|
|
1629
|
+
.K4GW2 ...154 -.185 ...164 -.255
|
|
1630
|
+
.K4GW2 ...166 2.274 ...176 -.1388
|
|
1631
|
+
.K4GW2 ...177 -.9716 ...178 -4.2334
|
|
1632
|
+
.K4GW2 ...187 -9.6882 ...188 -7.43
|
|
1633
|
+
.K4GW2 ...200 -.0162 ...202 -.005
|
|
1634
|
+
.K4GW2 ...260 -.00504 ...000 2.7019
|
|
1635
|
+
.K4GW3 ...012 -1. ...020 .114
|
|
1636
|
+
.K4GW3 ...299 1. ...039 -.3648
|
|
1637
|
+
.K4GW3 ...040 .2432 ...041 -.152
|
|
1638
|
+
.K4GW3 ...142 -.143 ...155 -.12
|
|
1639
|
+
.K4GW3 ...164 -.416 ...166 1.192
|
|
1640
|
+
.K4GW3 ...176 -.1388 ...177 -.9716
|
|
1641
|
+
.K4GW3 ...178 -4.2334 ...187 -9.6882
|
|
1642
|
+
.K4GW3 ...188 -7.43 ...200 -.0162
|
|
1643
|
+
.K4GW3 ...202 -.005 ...260 -.00504
|
|
1644
|
+
.K4GW3 ...000 2.6991
|
|
1645
|
+
.KKGN3 ...012 -1. ...020 .118
|
|
1646
|
+
.KKGN3 ...299 1. ...026 -.0777
|
|
1647
|
+
.KKGN3 ...027 -.136 ...142 -.117
|
|
1648
|
+
.KKGN3 ...155 -.11 ...164 -.41
|
|
1649
|
+
.KKGN3 ...166 1.216 ...176 -.2015
|
|
1650
|
+
.KKGN3 ...177 -1.4105 ...178 -3.9091
|
|
1651
|
+
.KKGN3 ...187 -9.1481 ...188 -10.4982
|
|
1652
|
+
.KKGN3 ...202 -.005 ...200 -.0115
|
|
1653
|
+
.KKGN3 ...260 -.00504 ...000 2.6995
|
|
1654
|
+
.K4GW4 ...012 -1. ...020 .139
|
|
1655
|
+
.K4GW4 ...299 1. ...039 -.3648
|
|
1656
|
+
.K4GW4 ...040 .2432 ...041 -.152
|
|
1657
|
+
.K4GW4 ...142 -.143 ...155 -.206
|
|
1658
|
+
.K4GW4 ...164 -.33 ...166 2.897
|
|
1659
|
+
.K4GW4 ...176 -.1388 ...177 -.9716
|
|
1660
|
+
.K4GW4 ...178 -4.2334 ...187 -9.6882
|
|
1661
|
+
.K4GW4 ...188 -7.43 ...200 -.0162
|
|
1662
|
+
.K4GW4 ...202 -.005 ...260 -.00504
|
|
1663
|
+
.K4GW4 ...000 2.6991
|
|
1664
|
+
.KKGN4 ...012 -1. ...020 .139
|
|
1665
|
+
.KKGN4 ...299 1. ...026 -.0777
|
|
1666
|
+
.KKGN4 ...027 -.136 ...142 -.117
|
|
1667
|
+
.KKGN4 ...155 -.19 ...164 -.33
|
|
1668
|
+
.KKGN4 ...166 2.897 ...176 -.2015
|
|
1669
|
+
.KKGN4 ...177 -1.4105 ...178 -3.9091
|
|
1670
|
+
.KKGN4 ...187 -9.1481 ...188 -10.4982
|
|
1671
|
+
.KKGN4 ...200 -.0115 ...202 -.005
|
|
1672
|
+
.KKGN4 ...260 -.00504 ...000 2.6995
|
|
1673
|
+
.VN3HF ...176 1. ...295 -1.
|
|
1674
|
+
.VN3HF ...177 1.1 ...178 -30.
|
|
1675
|
+
.VN3HF ...187 -7.4 ...188 48.08
|
|
1676
|
+
.VN3HF ...192 .534 ...195 .534
|
|
1677
|
+
.VNFHF ...000 .123 ...134 -1.25
|
|
1678
|
+
.VNFHF ...164 -.03 ...166 -.4092
|
|
1679
|
+
.VNFHF ...260 -.246 ...295 1.
|
|
1680
|
+
.VNFHF ...296 1. ...297 1.
|
|
1681
|
+
.VNFHF ...298 -.62
|
|
1682
|
+
RHS
|
|
1683
|
+
ZZZZZZ01 ...000 -7.113 ...010 2.284
|
|
1684
|
+
ZZZZZZ01 ...011 1.59 ...013 3.99
|
|
1685
|
+
ZZZZZZ01 ...014 .109 ...015 .69
|
|
1686
|
+
ZZZZZZ01 ...017 1. ...018 5.216
|
|
1687
|
+
ZZZZZZ01 ...019 7.233 ...020 1.
|
|
1688
|
+
ZZZZZZ01 ...021 .65 ...023 .1395
|
|
1689
|
+
ZZZZZZ01 ...024 .1805 ...030 1.3453
|
|
1690
|
+
ZZZZZZ01 ...035 .4207 ...038 .6665
|
|
1691
|
+
ZZZZZZ01 ...043 .5 ...048 .1019
|
|
1692
|
+
ZZZZZZ01 ...050 .935 ...055 .96
|
|
1693
|
+
ZZZZZZ01 ...057 -.0098 ...059 -.2662
|
|
1694
|
+
ZZZZZZ01 ...060 -.0104 ...120 .099
|
|
1695
|
+
ZZZZZZ01 ...133 1.6342 ...134 1.8
|
|
1696
|
+
ZZZZZZ01 ...135 16.5 ...136 1.5
|
|
1697
|
+
ZZZZZZ01 ...138 .1938 ...142 -.0637
|
|
1698
|
+
ZZZZZZ01 ...143 .6344 ...144 .6045
|
|
1699
|
+
ZZZZZZ01 ...147 .5789 ...148 .347
|
|
1700
|
+
ZZZZZZ01 ...150 -.0459 ...151 -.1422
|
|
1701
|
+
ZZZZZZ01 ...152 -.2448 ...156 -12.1938
|
|
1702
|
+
ZZZZZZ01 ...157 -.6231 ...158 -.2857
|
|
1703
|
+
ZZZZZZ01 ...159 -.033 ...160 .2314
|
|
1704
|
+
ZZZZZZ01 ...161 .0675 ...163 4.3845
|
|
1705
|
+
ZZZZZZ01 ...164 -.3658 ...165 3.8254
|
|
1706
|
+
ZZZZZZ01 ...166 3.3851 ...167 .0327
|
|
1707
|
+
ZZZZZZ01 ...168 .0487 ...169 .0775
|
|
1708
|
+
ZZZZZZ01 ...172 .05 ...174 .205
|
|
1709
|
+
ZZZZZZ01 ...175 .1375 ...176 .1692
|
|
1710
|
+
ZZZZZZ01 ...177 1.8446 ...178 9.1385
|
|
1711
|
+
ZZZZZZ01 ...179 .0495 ...182 .631
|
|
1712
|
+
ZZZZZZ01 ...185 .5 ...186 1.05
|
|
1713
|
+
ZZZZZZ01 ...187 10.8308 ...188 9.5531
|
|
1714
|
+
ZZZZZZ01 ...189 .1692 ...190 2.952
|
|
1715
|
+
ZZZZZZ01 ...191 1.302 ...192 1.
|
|
1716
|
+
ZZZZZZ01 ...193 1. ...194 1.
|
|
1717
|
+
ZZZZZZ01 ...195 1. ...196 .1181
|
|
1718
|
+
ZZZZZZ01 ...197 .1181 ...199 1.
|
|
1719
|
+
ZZZZZZ01 ...202 -.0095 ...204 .1107
|
|
1720
|
+
ZZZZZZ01 ...205 .3953 ...212 .3987
|
|
1721
|
+
ZZZZZZ01 ...223 2.908 ...234 1.9642
|
|
1722
|
+
ZZZZZZ01 ...250 1.7 ...261 2.799
|
|
1723
|
+
ZZZZZZ01 ...263 56.92 ...264 -1.1958
|
|
1724
|
+
ZZZZZZ01 ...265 .44 ...266 .5
|
|
1725
|
+
ZZZZZZ01 ...268 .0425 ...270 .1984
|
|
1726
|
+
ZZZZZZ01 ...276 1.5231 ...277 3.9475
|
|
1727
|
+
ZZZZZZ01 ...278 1.2884 ...279 .5186
|
|
1728
|
+
ZZZZZZ01 ...280 -.1901 ...281 .1275
|
|
1729
|
+
ZZZZZZ01 ...284 42. ...285 3.8
|
|
1730
|
+
ZZZZZZ01 ...291 4.68 ...292 2.4
|
|
1731
|
+
ZZZZZZ01 ...293 .1114 ...294 2.264
|
|
1732
|
+
ZZZZZZ01 ...299 10.57 ...300 .2137
|
|
1733
|
+
ENDATA
|