casadi 3.6.7__cp313-none-macosx_10_13_x86_64.macosx_10_13_intel.whl
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.
- casadi/__init__.py +92 -0
- casadi/_casadi.so +0 -0
- casadi/casadi-cli +0 -0
- casadi/casadi.py +50976 -0
- casadi/cbc +0 -0
- casadi/clp +0 -0
- casadi/cmake/casadi-config-version.cmake +11 -0
- casadi/cmake/casadi-config.cmake +8 -0
- casadi/cmake/casadi-targets-release.cmake +19 -0
- casadi/cmake/casadi-targets.cmake +106 -0
- casadi/cmake/highs/highs-config.cmake +17 -0
- casadi/cmake/highs/highs-targets-release.cmake +28 -0
- casadi/cmake/highs/highs-targets.cmake +117 -0
- casadi/cmake/osqp/osqp-config.cmake +1 -0
- casadi/cmake/osqp/osqp-targets-noconfig.cmake +29 -0
- casadi/cmake/osqp/osqp-targets.cmake +113 -0
- casadi/cmake/qdldl/qdldl-config.cmake +1 -0
- casadi/cmake/qdldl/qdldl-targets-noconfig.cmake +29 -0
- casadi/cmake/qdldl/qdldl-targets.cmake +113 -0
- casadi/cmake/sleqp/sleqp-config-version.cmake +65 -0
- casadi/cmake/sleqp/sleqp-config.cmake +1 -0
- casadi/cmake/sleqp/sleqp-targets-release.cmake +20 -0
- casadi/cmake/sleqp/sleqp-targets.cmake +106 -0
- casadi/cmake/trlib/trlib-config-release.cmake +19 -0
- casadi/cmake/trlib/trlib-config-version.cmake +83 -0
- casadi/cmake/trlib/trlib-config.cmake +107 -0
- casadi/highs +0 -0
- casadi/include/blasfeo.h +52 -0
- casadi/include/blasfeo_block_size.h +447 -0
- casadi/include/blasfeo_common.h +274 -0
- casadi/include/blasfeo_d_aux.h +255 -0
- casadi/include/blasfeo_d_aux_ext_dep.h +145 -0
- casadi/include/blasfeo_d_aux_ext_dep_ref.h +84 -0
- casadi/include/blasfeo_d_aux_old.h +75 -0
- casadi/include/blasfeo_d_aux_ref.h +208 -0
- casadi/include/blasfeo_d_aux_test.h +226 -0
- casadi/include/blasfeo_d_blas.h +46 -0
- casadi/include/blasfeo_d_blas_api.h +281 -0
- casadi/include/blasfeo_d_blasfeo_api.h +364 -0
- casadi/include/blasfeo_d_blasfeo_api_ref.h +147 -0
- casadi/include/blasfeo_d_blasfeo_hp_api.h +84 -0
- casadi/include/blasfeo_d_blasfeo_ref_api.h +283 -0
- casadi/include/blasfeo_d_kernel.h +1321 -0
- casadi/include/blasfeo_i_aux_ext_dep.h +69 -0
- casadi/include/blasfeo_m_aux.h +57 -0
- casadi/include/blasfeo_memory.h +62 -0
- casadi/include/blasfeo_naming.h +77 -0
- casadi/include/blasfeo_processor_features.h +88 -0
- casadi/include/blasfeo_s_aux.h +168 -0
- casadi/include/blasfeo_s_aux_ext_dep.h +141 -0
- casadi/include/blasfeo_s_aux_ext_dep_ref.h +82 -0
- casadi/include/blasfeo_s_aux_old.h +64 -0
- casadi/include/blasfeo_s_aux_ref.h +147 -0
- casadi/include/blasfeo_s_aux_test.h +177 -0
- casadi/include/blasfeo_s_blas.h +46 -0
- casadi/include/blasfeo_s_blas_api.h +182 -0
- casadi/include/blasfeo_s_blasfeo_api.h +284 -0
- casadi/include/blasfeo_s_blasfeo_api_ref.h +135 -0
- casadi/include/blasfeo_s_blasfeo_ref_api.h +252 -0
- casadi/include/blasfeo_s_kernel.h +692 -0
- casadi/include/blasfeo_stdlib.h +62 -0
- casadi/include/blasfeo_target.h +73 -0
- casadi/include/blasfeo_timing.h +114 -0
- casadi/include/blasfeo_v_aux_ext_dep.h +83 -0
- casadi/include/casadi/casadi.hpp +31 -0
- casadi/include/casadi/casadi.i +4691 -0
- casadi/include/casadi/casadi_c.h +138 -0
- casadi/include/casadi/casadi_numpy.hpp +97 -0
- casadi/include/casadi/config.h +46 -0
- casadi/include/casadi/core/calculus.hpp +1750 -0
- casadi/include/casadi/core/callback.hpp +226 -0
- casadi/include/casadi/core/casadi_common.hpp +318 -0
- casadi/include/casadi/core/casadi_enum.hpp +90 -0
- casadi/include/casadi/core/casadi_export.h +43 -0
- casadi/include/casadi/core/casadi_interrupt.hpp +83 -0
- casadi/include/casadi/core/casadi_limits.hpp +104 -0
- casadi/include/casadi/core/casadi_logger.hpp +134 -0
- casadi/include/casadi/core/casadi_meta.hpp +107 -0
- casadi/include/casadi/core/casadi_misc.hpp +1001 -0
- casadi/include/casadi/core/casadi_types.hpp +66 -0
- casadi/include/casadi/core/code_generator.hpp +975 -0
- casadi/include/casadi/core/conic.hpp +213 -0
- casadi/include/casadi/core/core.hpp +70 -0
- casadi/include/casadi/core/dae_builder.hpp +723 -0
- casadi/include/casadi/core/dm.hpp +87 -0
- casadi/include/casadi/core/dm_fwd.hpp +39 -0
- casadi/include/casadi/core/dple.hpp +138 -0
- casadi/include/casadi/core/exception.hpp +167 -0
- casadi/include/casadi/core/expm.hpp +84 -0
- casadi/include/casadi/core/external.hpp +70 -0
- casadi/include/casadi/core/fmu.hpp +224 -0
- casadi/include/casadi/core/function.hpp +1347 -0
- casadi/include/casadi/core/generic_expression.hpp +760 -0
- casadi/include/casadi/core/generic_matrix.hpp +1598 -0
- casadi/include/casadi/core/generic_type.hpp +311 -0
- casadi/include/casadi/core/global_options.hpp +97 -0
- casadi/include/casadi/core/im.hpp +52 -0
- casadi/include/casadi/core/im_fwd.hpp +35 -0
- casadi/include/casadi/core/importer.hpp +221 -0
- casadi/include/casadi/core/integration_tools.hpp +292 -0
- casadi/include/casadi/core/integrator.hpp +256 -0
- casadi/include/casadi/core/interpolant.hpp +163 -0
- casadi/include/casadi/core/linsol.hpp +171 -0
- casadi/include/casadi/core/matrix_decl.hpp +1352 -0
- casadi/include/casadi/core/matrix_fwd.hpp +37 -0
- casadi/include/casadi/core/mx.hpp +953 -0
- casadi/include/casadi/core/nlp_builder.hpp +162 -0
- casadi/include/casadi/core/nlp_tools.hpp +124 -0
- casadi/include/casadi/core/nlpsol.hpp +234 -0
- casadi/include/casadi/core/nonzeros.hpp +111 -0
- casadi/include/casadi/core/options.hpp +119 -0
- casadi/include/casadi/core/optistack.hpp +670 -0
- casadi/include/casadi/core/polynomial.hpp +126 -0
- casadi/include/casadi/core/printable.hpp +73 -0
- casadi/include/casadi/core/rootfinder.hpp +176 -0
- casadi/include/casadi/core/runtime/casadi_axpy.hpp +8 -0
- casadi/include/casadi/core/runtime/casadi_bfgs.hpp +49 -0
- casadi/include/casadi/core/runtime/casadi_bilin.hpp +42 -0
- casadi/include/casadi/core/runtime/casadi_bound_consistency.hpp +51 -0
- casadi/include/casadi/core/runtime/casadi_cache.hpp +59 -0
- casadi/include/casadi/core/runtime/casadi_clear.hpp +27 -0
- casadi/include/casadi/core/runtime/casadi_clip_max.hpp +33 -0
- casadi/include/casadi/core/runtime/casadi_clip_min.hpp +33 -0
- casadi/include/casadi/core/runtime/casadi_convexify.hpp +182 -0
- casadi/include/casadi/core/runtime/casadi_copy.hpp +31 -0
- casadi/include/casadi/core/runtime/casadi_cvx.hpp +463 -0
- casadi/include/casadi/core/runtime/casadi_de_boor.hpp +36 -0
- casadi/include/casadi/core/runtime/casadi_dense_lsqr.hpp +247 -0
- casadi/include/casadi/core/runtime/casadi_densify.hpp +48 -0
- casadi/include/casadi/core/runtime/casadi_dot.hpp +27 -0
- casadi/include/casadi/core/runtime/casadi_feasiblesqpmethod.hpp +208 -0
- casadi/include/casadi/core/runtime/casadi_file_slurp.hpp +32 -0
- casadi/include/casadi/core/runtime/casadi_fill.hpp +27 -0
- casadi/include/casadi/core/runtime/casadi_finite_diff.hpp +345 -0
- casadi/include/casadi/core/runtime/casadi_flip.hpp +33 -0
- casadi/include/casadi/core/runtime/casadi_getu.hpp +35 -0
- casadi/include/casadi/core/runtime/casadi_iamax.hpp +36 -0
- casadi/include/casadi/core/runtime/casadi_interpn.hpp +39 -0
- casadi/include/casadi/core/runtime/casadi_interpn_grad.hpp +72 -0
- casadi/include/casadi/core/runtime/casadi_interpn_interpolate.hpp +43 -0
- casadi/include/casadi/core/runtime/casadi_interpn_weights.hpp +39 -0
- casadi/include/casadi/core/runtime/casadi_ipqp.hpp +868 -0
- casadi/include/casadi/core/runtime/casadi_jac.hpp +186 -0
- casadi/include/casadi/core/runtime/casadi_kkt.hpp +67 -0
- casadi/include/casadi/core/runtime/casadi_kron.hpp +50 -0
- casadi/include/casadi/core/runtime/casadi_ldl.hpp +109 -0
- casadi/include/casadi/core/runtime/casadi_logsumexp.hpp +41 -0
- casadi/include/casadi/core/runtime/casadi_low.hpp +65 -0
- casadi/include/casadi/core/runtime/casadi_lsqr.hpp +247 -0
- casadi/include/casadi/core/runtime/casadi_masked_norm_inf.hpp +33 -0
- casadi/include/casadi/core/runtime/casadi_max_viol.hpp +37 -0
- casadi/include/casadi/core/runtime/casadi_mmax.hpp +28 -0
- casadi/include/casadi/core/runtime/casadi_mmin.hpp +29 -0
- casadi/include/casadi/core/runtime/casadi_mtimes.hpp +75 -0
- casadi/include/casadi/core/runtime/casadi_mv.hpp +46 -0
- casadi/include/casadi/core/runtime/casadi_mv_dense.hpp +39 -0
- casadi/include/casadi/core/runtime/casadi_nd_boor_dual_eval.hpp +127 -0
- casadi/include/casadi/core/runtime/casadi_nd_boor_eval.hpp +120 -0
- casadi/include/casadi/core/runtime/casadi_newton.hpp +66 -0
- casadi/include/casadi/core/runtime/casadi_nlp.hpp +289 -0
- casadi/include/casadi/core/runtime/casadi_norm_1.hpp +29 -0
- casadi/include/casadi/core/runtime/casadi_norm_2.hpp +24 -0
- casadi/include/casadi/core/runtime/casadi_norm_inf.hpp +28 -0
- casadi/include/casadi/core/runtime/casadi_norm_inf_mul.hpp +105 -0
- casadi/include/casadi/core/runtime/casadi_ocp_block.hpp +55 -0
- casadi/include/casadi/core/runtime/casadi_oracle.hpp +44 -0
- casadi/include/casadi/core/runtime/casadi_oracle_callback.hpp +39 -0
- casadi/include/casadi/core/runtime/casadi_polyval.hpp +29 -0
- casadi/include/casadi/core/runtime/casadi_project.hpp +39 -0
- casadi/include/casadi/core/runtime/casadi_qp.hpp +86 -0
- casadi/include/casadi/core/runtime/casadi_qr.hpp +272 -0
- casadi/include/casadi/core/runtime/casadi_qrqp.hpp +1239 -0
- casadi/include/casadi/core/runtime/casadi_rank1.hpp +40 -0
- casadi/include/casadi/core/runtime/casadi_regularize.hpp +73 -0
- casadi/include/casadi/core/runtime/casadi_runtime.hpp +318 -0
- casadi/include/casadi/core/runtime/casadi_scal.hpp +26 -0
- casadi/include/casadi/core/runtime/casadi_scaled_copy.hpp +31 -0
- casadi/include/casadi/core/runtime/casadi_sparsify.hpp +42 -0
- casadi/include/casadi/core/runtime/casadi_sparsity.hpp +24 -0
- casadi/include/casadi/core/runtime/casadi_sqpmethod.hpp +178 -0
- casadi/include/casadi/core/runtime/casadi_sum.hpp +31 -0
- casadi/include/casadi/core/runtime/casadi_sum_viol.hpp +37 -0
- casadi/include/casadi/core/runtime/casadi_swap.hpp +32 -0
- casadi/include/casadi/core/runtime/casadi_trans.hpp +35 -0
- casadi/include/casadi/core/runtime/casadi_tri_project.hpp +37 -0
- casadi/include/casadi/core/runtime/casadi_trilsolve.hpp +81 -0
- casadi/include/casadi/core/runtime/casadi_triusolve.hpp +81 -0
- casadi/include/casadi/core/runtime/casadi_vector_fmax.hpp +28 -0
- casadi/include/casadi/core/runtime/casadi_vector_fmin.hpp +28 -0
- casadi/include/casadi/core/runtime/casadi_vfmax.hpp +28 -0
- casadi/include/casadi/core/runtime/casadi_vfmin.hpp +28 -0
- casadi/include/casadi/core/runtime/shared.hpp +261 -0
- casadi/include/casadi/core/serializer.hpp +256 -0
- casadi/include/casadi/core/serializing_stream.hpp +329 -0
- casadi/include/casadi/core/shared_object.hpp +270 -0
- casadi/include/casadi/core/slice.hpp +149 -0
- casadi/include/casadi/core/sparsity.hpp +1495 -0
- casadi/include/casadi/core/sparsity_interface.hpp +745 -0
- casadi/include/casadi/core/submatrix.hpp +156 -0
- casadi/include/casadi/core/sx.hpp +203 -0
- casadi/include/casadi/core/sx_elem.hpp +351 -0
- casadi/include/casadi/core/sx_fwd.hpp +45 -0
- casadi/include/casadi/core/timing.hpp +98 -0
- casadi/include/casadi/core/tools.hpp +67 -0
- casadi/include/casadi/core/xml_file.hpp +93 -0
- casadi/include/casadi/core/xml_node.hpp +207 -0
- casadi/include/casadi/doc.i +58615 -0
- casadi/include/casadi/doc_merged.i +36123 -0
- casadi/include/casadi/mem.h +311 -0
- casadi/include/casadi/valgrind-casadi.supp +511 -0
- casadi/include/casadi/valgrind-python.supp +1416 -0
- casadi/include/coin/BonArraysHelpers.hpp +52 -0
- casadi/include/coin/BonAuxInfos.hpp +110 -0
- casadi/include/coin/BonBabInfos.hpp +57 -0
- casadi/include/coin/BonBabSetupBase.hpp +386 -0
- casadi/include/coin/BonBonminSetup.hpp +95 -0
- casadi/include/coin/BonBranchingTQP.hpp +197 -0
- casadi/include/coin/BonCbc.hpp +127 -0
- casadi/include/coin/BonCbcLpStrategy.hpp +45 -0
- casadi/include/coin/BonCbcNlpStrategy.hpp +98 -0
- casadi/include/coin/BonCbcNode.hpp +133 -0
- casadi/include/coin/BonChooseVariable.hpp +345 -0
- casadi/include/coin/BonCurvBranchingSolver.hpp +77 -0
- casadi/include/coin/BonCutStrengthener.hpp +244 -0
- casadi/include/coin/BonDiver.hpp +424 -0
- casadi/include/coin/BonDummyHeuristic.hpp +53 -0
- casadi/include/coin/BonDummyPump.hpp +43 -0
- casadi/include/coin/BonEcpCuts.hpp +97 -0
- casadi/include/coin/BonExitCodes.hpp +12 -0
- casadi/include/coin/BonFixAndSolveHeuristic.hpp +43 -0
- casadi/include/coin/BonGuessHeuristic.hpp +46 -0
- casadi/include/coin/BonHeuristicDive.hpp +88 -0
- casadi/include/coin/BonHeuristicDiveFractional.hpp +67 -0
- casadi/include/coin/BonHeuristicDiveMIP.hpp +83 -0
- casadi/include/coin/BonHeuristicDiveMIPFractional.hpp +67 -0
- casadi/include/coin/BonHeuristicDiveMIPVectorLength.hpp +74 -0
- casadi/include/coin/BonHeuristicDiveVectorLength.hpp +74 -0
- casadi/include/coin/BonHeuristicFPump.hpp +111 -0
- casadi/include/coin/BonHeuristicLocalBranching.hpp +59 -0
- casadi/include/coin/BonHeuristicRINS.hpp +55 -0
- casadi/include/coin/BonIpoptInteriorWarmStarter.hpp +103 -0
- casadi/include/coin/BonIpoptSolver.hpp +188 -0
- casadi/include/coin/BonIpoptWarmStart.hpp +148 -0
- casadi/include/coin/BonLinearCutsGenerator.hpp +75 -0
- casadi/include/coin/BonLocalSolverBasedHeuristic.hpp +102 -0
- casadi/include/coin/BonLpBranchingSolver.hpp +80 -0
- casadi/include/coin/BonMilpRounding.hpp +74 -0
- casadi/include/coin/BonOACutGenerator2.hpp +56 -0
- casadi/include/coin/BonOAMessages.hpp +44 -0
- casadi/include/coin/BonOaDecBase.hpp +297 -0
- casadi/include/coin/BonOaFeasChecker.hpp +73 -0
- casadi/include/coin/BonOaNlpOptim.hpp +116 -0
- casadi/include/coin/BonOsiTMINLPInterface.hpp +1342 -0
- casadi/include/coin/BonOuterApprox.hpp +123 -0
- casadi/include/coin/BonPseudoCosts.hpp +91 -0
- casadi/include/coin/BonPumpForMinlp.hpp +45 -0
- casadi/include/coin/BonQuadCut.hpp +217 -0
- casadi/include/coin/BonQuadRow.hpp +122 -0
- casadi/include/coin/BonRegisteredOptions.hpp +225 -0
- casadi/include/coin/BonStrongBranchingSolver.hpp +69 -0
- casadi/include/coin/BonSubMipSolver.hpp +143 -0
- casadi/include/coin/BonTMINLP.hpp +420 -0
- casadi/include/coin/BonTMINLP2OsiLP.hpp +164 -0
- casadi/include/coin/BonTMINLP2Quad.hpp +191 -0
- casadi/include/coin/BonTMINLP2TNLP.hpp +509 -0
- casadi/include/coin/BonTMINLPLinObj.hpp +216 -0
- casadi/include/coin/BonTMatrix.hpp +167 -0
- casadi/include/coin/BonTNLP2FPNLP.hpp +264 -0
- casadi/include/coin/BonTNLPSolver.hpp +241 -0
- casadi/include/coin/BonTypes.hpp +95 -0
- casadi/include/coin/BonminConfig.h +19 -0
- casadi/include/coin/CbcBranchActual.hpp +26 -0
- casadi/include/coin/CbcBranchAllDifferent.hpp +61 -0
- casadi/include/coin/CbcBranchBase.hpp +79 -0
- casadi/include/coin/CbcBranchCut.hpp +182 -0
- casadi/include/coin/CbcBranchDecision.hpp +135 -0
- casadi/include/coin/CbcBranchDefaultDecision.hpp +101 -0
- casadi/include/coin/CbcBranchDynamic.hpp +210 -0
- casadi/include/coin/CbcBranchLotsize.hpp +249 -0
- casadi/include/coin/CbcBranchToFixLots.hpp +94 -0
- casadi/include/coin/CbcBranchingObject.hpp +245 -0
- casadi/include/coin/CbcClique.hpp +309 -0
- casadi/include/coin/CbcCompare.hpp +46 -0
- casadi/include/coin/CbcCompareActual.hpp +16 -0
- casadi/include/coin/CbcCompareBase.hpp +155 -0
- casadi/include/coin/CbcCompareDefault.hpp +129 -0
- casadi/include/coin/CbcCompareDepth.hpp +48 -0
- casadi/include/coin/CbcCompareEstimate.hpp +48 -0
- casadi/include/coin/CbcCompareObjective.hpp +50 -0
- casadi/include/coin/CbcConfig.h +18 -0
- casadi/include/coin/CbcConsequence.hpp +50 -0
- casadi/include/coin/CbcCountRowCut.hpp +176 -0
- casadi/include/coin/CbcCutGenerator.hpp +550 -0
- casadi/include/coin/CbcCutModifier.hpp +59 -0
- casadi/include/coin/CbcCutSubsetModifier.hpp +69 -0
- casadi/include/coin/CbcDummyBranchingObject.hpp +83 -0
- casadi/include/coin/CbcEventHandler.hpp +250 -0
- casadi/include/coin/CbcFathom.hpp +136 -0
- casadi/include/coin/CbcFathomDynamicProgramming.hpp +177 -0
- casadi/include/coin/CbcFeasibilityBase.hpp +60 -0
- casadi/include/coin/CbcFixVariable.hpp +68 -0
- casadi/include/coin/CbcFollowOn.hpp +207 -0
- casadi/include/coin/CbcFullNodeInfo.hpp +171 -0
- casadi/include/coin/CbcGeneral.hpp +60 -0
- casadi/include/coin/CbcGeneralDepth.hpp +289 -0
- casadi/include/coin/CbcHeuristic.hpp +735 -0
- casadi/include/coin/CbcHeuristicDINS.hpp +98 -0
- casadi/include/coin/CbcHeuristicDW.hpp +374 -0
- casadi/include/coin/CbcHeuristicDive.hpp +198 -0
- casadi/include/coin/CbcHeuristicDiveCoefficient.hpp +52 -0
- casadi/include/coin/CbcHeuristicDiveFractional.hpp +52 -0
- casadi/include/coin/CbcHeuristicDiveGuided.hpp +55 -0
- casadi/include/coin/CbcHeuristicDiveLineSearch.hpp +52 -0
- casadi/include/coin/CbcHeuristicDivePseudoCost.hpp +60 -0
- casadi/include/coin/CbcHeuristicDiveVectorLength.hpp +52 -0
- casadi/include/coin/CbcHeuristicFPump.hpp +375 -0
- casadi/include/coin/CbcHeuristicGreedy.hpp +289 -0
- casadi/include/coin/CbcHeuristicLocal.hpp +276 -0
- casadi/include/coin/CbcHeuristicPivotAndFix.hpp +58 -0
- casadi/include/coin/CbcHeuristicRENS.hpp +79 -0
- casadi/include/coin/CbcHeuristicRINS.hpp +106 -0
- casadi/include/coin/CbcHeuristicRandRound.hpp +58 -0
- casadi/include/coin/CbcHeuristicVND.hpp +95 -0
- casadi/include/coin/CbcLinked.hpp +1443 -0
- casadi/include/coin/CbcMessage.hpp +94 -0
- casadi/include/coin/CbcMipStartIO.hpp +29 -0
- casadi/include/coin/CbcModel.hpp +3296 -0
- casadi/include/coin/CbcNWay.hpp +171 -0
- casadi/include/coin/CbcNode.hpp +380 -0
- casadi/include/coin/CbcNodeInfo.hpp +377 -0
- casadi/include/coin/CbcObject.hpp +288 -0
- casadi/include/coin/CbcObjectUpdateData.hpp +63 -0
- casadi/include/coin/CbcOrClpParam.cpp +4321 -0
- casadi/include/coin/CbcOrClpParam.hpp +585 -0
- casadi/include/coin/CbcParam.hpp +338 -0
- casadi/include/coin/CbcPartialNodeInfo.hpp +116 -0
- casadi/include/coin/CbcSOS.hpp +290 -0
- casadi/include/coin/CbcSimpleInteger.hpp +299 -0
- casadi/include/coin/CbcSimpleIntegerDynamicPseudoCost.hpp +619 -0
- casadi/include/coin/CbcSimpleIntegerPseudoCost.hpp +122 -0
- casadi/include/coin/CbcSolver.hpp +460 -0
- casadi/include/coin/CbcStrategy.hpp +269 -0
- casadi/include/coin/CbcSubProblem.hpp +84 -0
- casadi/include/coin/CbcTree.hpp +493 -0
- casadi/include/coin/CbcTreeLocal.hpp +393 -0
- casadi/include/coin/Cbc_C_Interface.h +904 -0
- casadi/include/coin/Cgl012cut.hpp +464 -0
- casadi/include/coin/CglAllDifferent.hpp +115 -0
- casadi/include/coin/CglClique.hpp +312 -0
- casadi/include/coin/CglConfig.h +19 -0
- casadi/include/coin/CglCutGenerator.hpp +133 -0
- casadi/include/coin/CglDuplicateRow.hpp +189 -0
- casadi/include/coin/CglFlowCover.hpp +371 -0
- casadi/include/coin/CglGMI.hpp +364 -0
- casadi/include/coin/CglGMIParam.hpp +313 -0
- casadi/include/coin/CglGomory.hpp +204 -0
- casadi/include/coin/CglKnapsackCover.hpp +310 -0
- casadi/include/coin/CglLandP.hpp +306 -0
- casadi/include/coin/CglLandPValidator.hpp +130 -0
- casadi/include/coin/CglLiftAndProject.hpp +104 -0
- casadi/include/coin/CglMessage.hpp +49 -0
- casadi/include/coin/CglMixedIntegerRounding.hpp +429 -0
- casadi/include/coin/CglMixedIntegerRounding2.hpp +427 -0
- casadi/include/coin/CglOddHole.hpp +160 -0
- casadi/include/coin/CglParam.hpp +93 -0
- casadi/include/coin/CglPreProcess.hpp +600 -0
- casadi/include/coin/CglProbing.hpp +543 -0
- casadi/include/coin/CglRedSplit.hpp +448 -0
- casadi/include/coin/CglRedSplit2.hpp +494 -0
- casadi/include/coin/CglRedSplit2Param.hpp +495 -0
- casadi/include/coin/CglRedSplitParam.hpp +272 -0
- casadi/include/coin/CglResidualCapacity.hpp +240 -0
- casadi/include/coin/CglSimpleRounding.hpp +174 -0
- casadi/include/coin/CglStored.hpp +140 -0
- casadi/include/coin/CglTreeInfo.hpp +216 -0
- casadi/include/coin/CglTwomir.hpp +562 -0
- casadi/include/coin/CglZeroHalf.hpp +133 -0
- casadi/include/coin/ClpAmplObjective.hpp +113 -0
- casadi/include/coin/ClpCholeskyBase.hpp +321 -0
- casadi/include/coin/ClpCholeskyDense.hpp +157 -0
- casadi/include/coin/ClpCholeskyMumps.hpp +65 -0
- casadi/include/coin/ClpCholeskyPardiso.hpp +67 -0
- casadi/include/coin/ClpConfig.h +17 -0
- casadi/include/coin/ClpConstraint.hpp +129 -0
- casadi/include/coin/ClpConstraintAmpl.hpp +109 -0
- casadi/include/coin/ClpConstraintLinear.hpp +113 -0
- casadi/include/coin/ClpConstraintQuadratic.hpp +123 -0
- casadi/include/coin/ClpDualRowDantzig.hpp +72 -0
- casadi/include/coin/ClpDualRowPivot.hpp +136 -0
- casadi/include/coin/ClpDualRowSteepest.hpp +160 -0
- casadi/include/coin/ClpDummyMatrix.hpp +186 -0
- casadi/include/coin/ClpDynamicExampleMatrix.hpp +199 -0
- casadi/include/coin/ClpDynamicMatrix.hpp +420 -0
- casadi/include/coin/ClpEventHandler.hpp +193 -0
- casadi/include/coin/ClpFactorization.hpp +556 -0
- casadi/include/coin/ClpGubDynamicMatrix.hpp +270 -0
- casadi/include/coin/ClpGubMatrix.hpp +373 -0
- casadi/include/coin/ClpInterior.hpp +622 -0
- casadi/include/coin/ClpLinearObjective.hpp +104 -0
- casadi/include/coin/ClpMatrixBase.hpp +561 -0
- casadi/include/coin/ClpMessage.hpp +131 -0
- casadi/include/coin/ClpModel.hpp +1442 -0
- casadi/include/coin/ClpNetworkMatrix.hpp +235 -0
- casadi/include/coin/ClpNode.hpp +364 -0
- casadi/include/coin/ClpNonLinearCost.hpp +432 -0
- casadi/include/coin/ClpObjective.hpp +142 -0
- casadi/include/coin/ClpPEDualRowDantzig.hpp +84 -0
- casadi/include/coin/ClpPEDualRowSteepest.hpp +100 -0
- casadi/include/coin/ClpPEPrimalColumnDantzig.hpp +71 -0
- casadi/include/coin/ClpPEPrimalColumnSteepest.hpp +107 -0
- casadi/include/coin/ClpPESimplex.hpp +231 -0
- casadi/include/coin/ClpPackedMatrix.hpp +778 -0
- casadi/include/coin/ClpParameters.hpp +132 -0
- casadi/include/coin/ClpPdcoBase.hpp +110 -0
- casadi/include/coin/ClpPlusMinusOneMatrix.hpp +565 -0
- casadi/include/coin/ClpPresolve.hpp +379 -0
- casadi/include/coin/ClpPrimalColumnDantzig.hpp +74 -0
- casadi/include/coin/ClpPrimalColumnPivot.hpp +163 -0
- casadi/include/coin/ClpPrimalColumnSteepest.hpp +281 -0
- casadi/include/coin/ClpQuadraticObjective.hpp +161 -0
- casadi/include/coin/ClpSimplex.hpp +2137 -0
- casadi/include/coin/ClpSimplexDual.hpp +304 -0
- casadi/include/coin/ClpSimplexNonlinear.hpp +117 -0
- casadi/include/coin/ClpSimplexOther.hpp +282 -0
- casadi/include/coin/ClpSimplexPrimal.hpp +244 -0
- casadi/include/coin/ClpSolve.hpp +505 -0
- casadi/include/coin/Clp_C_Interface.h +554 -0
- casadi/include/coin/CoinAlloc.hpp +179 -0
- casadi/include/coin/CoinBuild.hpp +159 -0
- casadi/include/coin/CoinDenseFactorization.hpp +452 -0
- casadi/include/coin/CoinDenseVector.hpp +401 -0
- casadi/include/coin/CoinDistance.hpp +51 -0
- casadi/include/coin/CoinError.hpp +274 -0
- casadi/include/coin/CoinFactorization.hpp +2178 -0
- casadi/include/coin/CoinFileIO.hpp +185 -0
- casadi/include/coin/CoinFinite.hpp +37 -0
- casadi/include/coin/CoinFloatEqual.hpp +204 -0
- casadi/include/coin/CoinHelperFunctions.hpp +1270 -0
- casadi/include/coin/CoinIndexedVector.hpp +1437 -0
- casadi/include/coin/CoinLpIO.hpp +836 -0
- casadi/include/coin/CoinMessage.hpp +95 -0
- casadi/include/coin/CoinMessageHandler.hpp +717 -0
- casadi/include/coin/CoinModel.hpp +1214 -0
- casadi/include/coin/CoinModelUseful.hpp +518 -0
- casadi/include/coin/CoinMpsIO.hpp +1142 -0
- casadi/include/coin/CoinOslFactorization.hpp +287 -0
- casadi/include/coin/CoinPackedMatrix.hpp +956 -0
- casadi/include/coin/CoinPackedVector.hpp +670 -0
- casadi/include/coin/CoinPackedVectorBase.hpp +274 -0
- casadi/include/coin/CoinParam.hpp +644 -0
- casadi/include/coin/CoinPragma.hpp +29 -0
- casadi/include/coin/CoinPresolveDoubleton.hpp +76 -0
- casadi/include/coin/CoinPresolveDual.hpp +84 -0
- casadi/include/coin/CoinPresolveDupcol.hpp +259 -0
- casadi/include/coin/CoinPresolveEmpty.hpp +120 -0
- casadi/include/coin/CoinPresolveFixed.hpp +185 -0
- casadi/include/coin/CoinPresolveForcing.hpp +69 -0
- casadi/include/coin/CoinPresolveImpliedFree.hpp +66 -0
- casadi/include/coin/CoinPresolveIsolated.hpp +59 -0
- casadi/include/coin/CoinPresolveMatrix.hpp +1996 -0
- casadi/include/coin/CoinPresolveMonitor.hpp +105 -0
- casadi/include/coin/CoinPresolvePsdebug.hpp +169 -0
- casadi/include/coin/CoinPresolveSingleton.hpp +115 -0
- casadi/include/coin/CoinPresolveSubst.hpp +103 -0
- casadi/include/coin/CoinPresolveTighten.hpp +58 -0
- casadi/include/coin/CoinPresolveTripleton.hpp +69 -0
- casadi/include/coin/CoinPresolveUseless.hpp +63 -0
- casadi/include/coin/CoinPresolveZeros.hpp +65 -0
- casadi/include/coin/CoinRational.hpp +43 -0
- casadi/include/coin/CoinSearchTree.hpp +523 -0
- casadi/include/coin/CoinShallowPackedVector.hpp +149 -0
- casadi/include/coin/CoinSignal.hpp +127 -0
- casadi/include/coin/CoinSimpFactorization.hpp +432 -0
- casadi/include/coin/CoinSmartPtr.hpp +548 -0
- casadi/include/coin/CoinSnapshot.hpp +572 -0
- casadi/include/coin/CoinSort.hpp +753 -0
- casadi/include/coin/CoinStructuredModel.hpp +270 -0
- casadi/include/coin/CoinTime.hpp +350 -0
- casadi/include/coin/CoinTypes.hpp +67 -0
- casadi/include/coin/CoinUtility.hpp +26 -0
- casadi/include/coin/CoinUtilsConfig.h +34 -0
- casadi/include/coin/CoinWarmStart.hpp +56 -0
- casadi/include/coin/CoinWarmStartBasis.hpp +468 -0
- casadi/include/coin/CoinWarmStartDual.hpp +180 -0
- casadi/include/coin/CoinWarmStartPrimalDual.hpp +233 -0
- casadi/include/coin/CoinWarmStartVector.hpp +523 -0
- casadi/include/coin/Coin_C_defines.h +149 -0
- casadi/include/coin/Idiot.hpp +327 -0
- casadi/include/coin/OsiAuxInfo.hpp +261 -0
- casadi/include/coin/OsiBranchingObject.hpp +1097 -0
- casadi/include/coin/OsiCbcSolverInterface.hpp +791 -0
- casadi/include/coin/OsiChooseVariable.hpp +645 -0
- casadi/include/coin/OsiClpSolverInterface.hpp +1604 -0
- casadi/include/coin/OsiColCut.hpp +322 -0
- casadi/include/coin/OsiCollections.hpp +34 -0
- casadi/include/coin/OsiConfig.h +19 -0
- casadi/include/coin/OsiCut.hpp +251 -0
- casadi/include/coin/OsiCuts.hpp +505 -0
- casadi/include/coin/OsiPresolve.hpp +272 -0
- casadi/include/coin/OsiRowCut.hpp +345 -0
- casadi/include/coin/OsiRowCutDebugger.hpp +190 -0
- casadi/include/coin/OsiSolverBranch.hpp +169 -0
- casadi/include/coin/OsiSolverInterface.hpp +2221 -0
- casadi/include/coin/OsiSolverParameters.hpp +144 -0
- casadi/include/coin/OsiUnitTests.hpp +390 -0
- casadi/include/coin-or/IpAlgBuilder.hpp +417 -0
- casadi/include/coin-or/IpAlgStrategy.hpp +201 -0
- casadi/include/coin-or/IpAlgTypes.hpp +64 -0
- casadi/include/coin-or/IpAugSystemSolver.hpp +212 -0
- casadi/include/coin-or/IpBlas.hpp +426 -0
- casadi/include/coin-or/IpCachedResults.hpp +897 -0
- casadi/include/coin-or/IpCompoundMatrix.hpp +423 -0
- casadi/include/coin-or/IpCompoundSymMatrix.hpp +348 -0
- casadi/include/coin-or/IpCompoundVector.hpp +395 -0
- casadi/include/coin-or/IpConvCheck.hpp +97 -0
- casadi/include/coin-or/IpDebug.hpp +167 -0
- casadi/include/coin-or/IpDenseVector.hpp +626 -0
- casadi/include/coin-or/IpDiagMatrix.hpp +158 -0
- casadi/include/coin-or/IpEqMultCalculator.hpp +76 -0
- casadi/include/coin-or/IpException.hpp +156 -0
- casadi/include/coin-or/IpExpansionMatrix.hpp +245 -0
- casadi/include/coin-or/IpGenTMatrix.hpp +290 -0
- casadi/include/coin-or/IpHessianUpdater.hpp +73 -0
- casadi/include/coin-or/IpIdentityMatrix.hpp +167 -0
- casadi/include/coin-or/IpIpoptAlg.hpp +257 -0
- casadi/include/coin-or/IpIpoptApplication.hpp +367 -0
- casadi/include/coin-or/IpIpoptCalculatedQuantities.hpp +1009 -0
- casadi/include/coin-or/IpIpoptData.hpp +966 -0
- casadi/include/coin-or/IpIpoptNLP.hpp +328 -0
- casadi/include/coin-or/IpIterateInitializer.hpp +68 -0
- casadi/include/coin-or/IpIteratesVector.hpp +840 -0
- casadi/include/coin-or/IpIterationOutput.hpp +78 -0
- casadi/include/coin-or/IpJournalist.hpp +573 -0
- casadi/include/coin-or/IpLapack.hpp +227 -0
- casadi/include/coin-or/IpLibraryLoader.hpp +76 -0
- casadi/include/coin-or/IpLineSearch.hpp +106 -0
- casadi/include/coin-or/IpLinearSolvers.h +46 -0
- casadi/include/coin-or/IpMatrix.hpp +434 -0
- casadi/include/coin-or/IpMuUpdate.hpp +77 -0
- casadi/include/coin-or/IpNLP.hpp +306 -0
- casadi/include/coin-or/IpNLPScaling.hpp +582 -0
- casadi/include/coin-or/IpObserver.hpp +422 -0
- casadi/include/coin-or/IpOptionsList.hpp +412 -0
- casadi/include/coin-or/IpOrigIpoptNLP.hpp +603 -0
- casadi/include/coin-or/IpPDSystemSolver.hpp +137 -0
- casadi/include/coin-or/IpReferenced.hpp +262 -0
- casadi/include/coin-or/IpRegOptions.hpp +1152 -0
- casadi/include/coin-or/IpReturnCodes.h +23 -0
- casadi/include/coin-or/IpReturnCodes.hpp +18 -0
- casadi/include/coin-or/IpReturnCodes.inc +71 -0
- casadi/include/coin-or/IpReturnCodes_inc.h +45 -0
- casadi/include/coin-or/IpScaledMatrix.hpp +291 -0
- casadi/include/coin-or/IpSearchDirCalculator.hpp +72 -0
- casadi/include/coin-or/IpSmartPtr.hpp +865 -0
- casadi/include/coin-or/IpSolveStatistics.hpp +210 -0
- casadi/include/coin-or/IpSparseSymLinearSolverInterface.hpp +260 -0
- casadi/include/coin-or/IpStdAugSystemSolver.cpp +555 -0
- casadi/include/coin-or/IpStdCInterface.h +428 -0
- casadi/include/coin-or/IpSumSymMatrix.hpp +186 -0
- casadi/include/coin-or/IpSymLinearSolver.hpp +141 -0
- casadi/include/coin-or/IpSymMatrix.hpp +167 -0
- casadi/include/coin-or/IpSymScaledMatrix.hpp +255 -0
- casadi/include/coin-or/IpSymTMatrix.hpp +275 -0
- casadi/include/coin-or/IpTNLP.hpp +820 -0
- casadi/include/coin-or/IpTNLPAdapter.hpp +648 -0
- casadi/include/coin-or/IpTNLPReducer.hpp +274 -0
- casadi/include/coin-or/IpTaggedObject.hpp +128 -0
- casadi/include/coin-or/IpTimedTask.hpp +218 -0
- casadi/include/coin-or/IpTimingStatistics.hpp +323 -0
- casadi/include/coin-or/IpTripletHelper.hpp +308 -0
- casadi/include/coin-or/IpTypes.h +81 -0
- casadi/include/coin-or/IpTypes.hpp +30 -0
- casadi/include/coin-or/IpUtils.hpp +166 -0
- casadi/include/coin-or/IpVector.hpp +892 -0
- casadi/include/coin-or/IpZeroSymMatrix.hpp +155 -0
- casadi/include/coin-or/IpoptConfig.h +45 -0
- casadi/include/coin-or/SensAlgorithm.hpp +114 -0
- casadi/include/coin-or/SensApplication.hpp +188 -0
- casadi/include/coin-or/SensBacksolver.hpp +36 -0
- casadi/include/coin-or/SensMeasurement.hpp +56 -0
- casadi/include/coin-or/SensPCalculator.hpp +137 -0
- casadi/include/coin-or/SensRegOp.hpp +21 -0
- casadi/include/coin-or/SensSchurData.hpp +182 -0
- casadi/include/coin-or/SensSchurDriver.hpp +118 -0
- casadi/include/coin-or/SensSimpleBacksolver.hpp +49 -0
- casadi/include/coin-or/SensStepCalc.hpp +85 -0
- casadi/include/coin-or/SensUtils.hpp +63 -0
- casadi/include/coin-or/metis/defs.h +161 -0
- casadi/include/coin-or/metis/macros.h +143 -0
- casadi/include/coin-or/metis/metis.h +37 -0
- casadi/include/coin-or/metis/proto.h +505 -0
- casadi/include/coin-or/metis/rename.h +418 -0
- casadi/include/coin-or/metis/struct.h +251 -0
- casadi/include/coin-or/mumps/dmumps_c.h +142 -0
- casadi/include/coin-or/mumps/mumps_c_types.h +72 -0
- casadi/include/coin-or/mumps/mumps_compat.h +27 -0
- casadi/include/coin-or/mumps/mumps_int_def.h +11 -0
- casadi/include/coin-or/mumps/mumps_mpi.h +67 -0
- casadi/include/d_blas.h +78 -0
- casadi/include/d_blas_64.h +73 -0
- casadi/include/fatrop/auxiliary/Common.hpp +34 -0
- casadi/include/fatrop/auxiliary/DynamicLib.hpp +34 -0
- casadi/include/fatrop/auxiliary/FatropOptions.hpp +68 -0
- casadi/include/fatrop/auxiliary/FatropVector.hpp +143 -0
- casadi/include/fatrop/auxiliary/LinearAlgebra.hpp +88 -0
- casadi/include/fatrop/auxiliary/VectorUtils.hpp +54 -0
- casadi/include/fatrop/blasfeo_wrapper/LinearAlgebraBlasfeo.hpp +493 -0
- casadi/include/fatrop/fatrop.hpp +39 -0
- casadi/include/fatrop/function_evaluation/CasadiCodegen.hpp +104 -0
- casadi/include/fatrop/function_evaluation/FunctionEvaluation.hpp +60 -0
- casadi/include/fatrop/json/json.h +946 -0
- casadi/include/fatrop/ocp/CasadiCApiUserdataWrap.hpp +87 -0
- casadi/include/fatrop/ocp/DuInfEvaluator.hpp +38 -0
- casadi/include/fatrop/ocp/FatropOCP.hpp +161 -0
- casadi/include/fatrop/ocp/FatropOCPBuilder.hpp +52 -0
- casadi/include/fatrop/ocp/FatropOCPResto.hpp +299 -0
- casadi/include/fatrop/ocp/OCP.hpp +82 -0
- casadi/include/fatrop/ocp/OCPAbstract.hpp +254 -0
- casadi/include/fatrop/ocp/OCPAdapter.hpp +197 -0
- casadi/include/fatrop/ocp/OCPCInterface.h +289 -0
- casadi/include/fatrop/ocp/OCPDims.hpp +60 -0
- casadi/include/fatrop/ocp/OCPInitializer.hpp +41 -0
- casadi/include/fatrop/ocp/OCPKKT.hpp +69 -0
- casadi/include/fatrop/ocp/OCPLSRiccati.hpp +198 -0
- casadi/include/fatrop/ocp/OCPLSScaler.hpp +66 -0
- casadi/include/fatrop/ocp/OCPLinearSolver.hpp +75 -0
- casadi/include/fatrop/ocp/OCPNoScaling.hpp +42 -0
- casadi/include/fatrop/ocp/OCPScalingMethod.hpp +42 -0
- casadi/include/fatrop/ocp/StageOCP.hpp +592 -0
- casadi/include/fatrop/ocp/StageOCPApplication.hpp +242 -0
- casadi/include/fatrop/ocp/StageOCPExpressions.hpp +182 -0
- casadi/include/fatrop/ocp/UStageEvalAbstract.hpp +168 -0
- casadi/include/fatrop/ocp/UStageOCPImpl.hpp +152 -0
- casadi/include/fatrop/quasi_newton/bfgs.hpp +159 -0
- casadi/include/fatrop/solver/AlgBuilder.hpp +76 -0
- casadi/include/fatrop/solver/AlgStrategy.hpp +33 -0
- casadi/include/fatrop/solver/FatropAlg.hpp +121 -0
- casadi/include/fatrop/solver/FatropData.hpp +188 -0
- casadi/include/fatrop/solver/FatropOptions.hpp +95 -0
- casadi/include/fatrop/solver/FatropPrinter.hpp +65 -0
- casadi/include/fatrop/solver/FatropStats.hpp +63 -0
- casadi/include/fatrop/solver/Filter.hpp +54 -0
- casadi/include/fatrop/solver/IterationData.hpp +56 -0
- casadi/include/fatrop/solver/LineSearch.hpp +86 -0
- casadi/include/fatrop/solver/NLPL1.hpp +263 -0
- casadi/include/fatrop/templates/NLPAlg.hpp +104 -0
- casadi/include/highs/HConfig.h +21 -0
- casadi/include/highs/Highs.h +1529 -0
- casadi/include/highs/filereaderlp/builder.hpp +25 -0
- casadi/include/highs/filereaderlp/def.hpp +19 -0
- casadi/include/highs/filereaderlp/model.hpp +68 -0
- casadi/include/highs/filereaderlp/reader.hpp +10 -0
- casadi/include/highs/interfaces/highs_c_api.h +2283 -0
- casadi/include/highs/io/Filereader.h +47 -0
- casadi/include/highs/io/FilereaderEms.h +33 -0
- casadi/include/highs/io/FilereaderLp.h +54 -0
- casadi/include/highs/io/FilereaderMps.h +30 -0
- casadi/include/highs/io/HMPSIO.h +81 -0
- casadi/include/highs/io/HMpsFF.h +235 -0
- casadi/include/highs/io/HighsIO.h +109 -0
- casadi/include/highs/io/LoadOptions.h +27 -0
- casadi/include/highs/ipm/IpxSolution.h +35 -0
- casadi/include/highs/ipm/IpxWrapper.h +73 -0
- casadi/include/highs/ipm/basiclu/basiclu.h +161 -0
- casadi/include/highs/ipm/basiclu/basiclu_factorize.h +247 -0
- casadi/include/highs/ipm/basiclu/basiclu_get_factors.h +108 -0
- casadi/include/highs/ipm/basiclu/basiclu_initialize.h +119 -0
- casadi/include/highs/ipm/basiclu/basiclu_obj_factorize.h +34 -0
- casadi/include/highs/ipm/basiclu/basiclu_obj_free.h +19 -0
- casadi/include/highs/ipm/basiclu/basiclu_obj_get_factors.h +34 -0
- casadi/include/highs/ipm/basiclu/basiclu_obj_initialize.h +46 -0
- casadi/include/highs/ipm/basiclu/basiclu_obj_solve_dense.h +29 -0
- casadi/include/highs/ipm/basiclu/basiclu_obj_solve_for_update.h +42 -0
- casadi/include/highs/ipm/basiclu/basiclu_obj_solve_sparse.h +32 -0
- casadi/include/highs/ipm/basiclu/basiclu_obj_update.h +31 -0
- casadi/include/highs/ipm/basiclu/basiclu_object.h +30 -0
- casadi/include/highs/ipm/basiclu/basiclu_solve_dense.h +75 -0
- casadi/include/highs/ipm/basiclu/basiclu_solve_for_update.h +169 -0
- casadi/include/highs/ipm/basiclu/basiclu_solve_sparse.h +112 -0
- casadi/include/highs/ipm/basiclu/basiclu_update.h +125 -0
- casadi/include/highs/ipm/basiclu/lu_def.h +39 -0
- casadi/include/highs/ipm/basiclu/lu_file.h +21 -0
- casadi/include/highs/ipm/basiclu/lu_internal.h +220 -0
- casadi/include/highs/ipm/basiclu/lu_list.h +168 -0
- casadi/include/highs/ipm/ipx/basiclu_kernel.h +20 -0
- casadi/include/highs/ipm/ipx/basiclu_wrapper.h +47 -0
- casadi/include/highs/ipm/ipx/basis.h +351 -0
- casadi/include/highs/ipm/ipx/conjugate_residuals.h +74 -0
- casadi/include/highs/ipm/ipx/control.h +163 -0
- casadi/include/highs/ipm/ipx/crossover.h +157 -0
- casadi/include/highs/ipm/ipx/diagonal_precond.h +45 -0
- casadi/include/highs/ipm/ipx/forrest_tomlin.h +102 -0
- casadi/include/highs/ipm/ipx/guess_basis.h +21 -0
- casadi/include/highs/ipm/ipx/indexed_vector.h +113 -0
- casadi/include/highs/ipm/ipx/info.h +27 -0
- casadi/include/highs/ipm/ipx/ipm.h +94 -0
- casadi/include/highs/ipm/ipx/ipx_c.h +47 -0
- casadi/include/highs/ipm/ipx/ipx_config.h +9 -0
- casadi/include/highs/ipm/ipx/ipx_info.h +111 -0
- casadi/include/highs/ipm/ipx/ipx_internal.h +88 -0
- casadi/include/highs/ipm/ipx/ipx_parameters.h +75 -0
- casadi/include/highs/ipm/ipx/ipx_status.h +57 -0
- casadi/include/highs/ipm/ipx/iterate.h +328 -0
- casadi/include/highs/ipm/ipx/kkt_solver.h +70 -0
- casadi/include/highs/ipm/ipx/kkt_solver_basis.h +66 -0
- casadi/include/highs/ipm/ipx/kkt_solver_diag.h +48 -0
- casadi/include/highs/ipm/ipx/linear_operator.h +26 -0
- casadi/include/highs/ipm/ipx/lp_solver.h +201 -0
- casadi/include/highs/ipm/ipx/lu_factorization.h +79 -0
- casadi/include/highs/ipm/ipx/lu_update.h +129 -0
- casadi/include/highs/ipm/ipx/maxvolume.h +54 -0
- casadi/include/highs/ipm/ipx/model.h +409 -0
- casadi/include/highs/ipm/ipx/multistream.h +52 -0
- casadi/include/highs/ipm/ipx/normal_matrix.h +44 -0
- casadi/include/highs/ipm/ipx/power_method.h +44 -0
- casadi/include/highs/ipm/ipx/sparse_matrix.h +195 -0
- casadi/include/highs/ipm/ipx/sparse_utils.h +58 -0
- casadi/include/highs/ipm/ipx/splitted_normal_matrix.h +63 -0
- casadi/include/highs/ipm/ipx/starting_basis.h +39 -0
- casadi/include/highs/ipm/ipx/symbolic_invert.h +29 -0
- casadi/include/highs/ipm/ipx/timer.h +24 -0
- casadi/include/highs/ipm/ipx/utils.h +39 -0
- casadi/include/highs/lp_data/HConst.h +305 -0
- casadi/include/highs/lp_data/HStruct.h +146 -0
- casadi/include/highs/lp_data/HighsAnalysis.h +26 -0
- casadi/include/highs/lp_data/HighsCallback.h +40 -0
- casadi/include/highs/lp_data/HighsCallbackStruct.h +62 -0
- casadi/include/highs/lp_data/HighsDebug.h +37 -0
- casadi/include/highs/lp_data/HighsInfo.h +322 -0
- casadi/include/highs/lp_data/HighsInfoDebug.h +30 -0
- casadi/include/highs/lp_data/HighsLp.h +101 -0
- casadi/include/highs/lp_data/HighsLpSolverObject.h +48 -0
- casadi/include/highs/lp_data/HighsLpUtils.h +266 -0
- casadi/include/highs/lp_data/HighsModelUtils.h +109 -0
- casadi/include/highs/lp_data/HighsOptions.h +1357 -0
- casadi/include/highs/lp_data/HighsRanging.h +46 -0
- casadi/include/highs/lp_data/HighsRuntimeOptions.h +276 -0
- casadi/include/highs/lp_data/HighsSolution.h +137 -0
- casadi/include/highs/lp_data/HighsSolutionDebug.h +90 -0
- casadi/include/highs/lp_data/HighsSolve.h +26 -0
- casadi/include/highs/lp_data/HighsStatus.h +32 -0
- casadi/include/highs/mip/HighsCliqueTable.h +318 -0
- casadi/include/highs/mip/HighsConflictPool.h +112 -0
- casadi/include/highs/mip/HighsCutGeneration.h +96 -0
- casadi/include/highs/mip/HighsCutPool.h +171 -0
- casadi/include/highs/mip/HighsDebugSol.h +135 -0
- casadi/include/highs/mip/HighsDomain.h +641 -0
- casadi/include/highs/mip/HighsDomainChange.h +51 -0
- casadi/include/highs/mip/HighsDynamicRowMatrix.h +107 -0
- casadi/include/highs/mip/HighsGFkSolve.h +441 -0
- casadi/include/highs/mip/HighsImplications.h +146 -0
- casadi/include/highs/mip/HighsLpAggregator.h +53 -0
- casadi/include/highs/mip/HighsLpRelaxation.h +360 -0
- casadi/include/highs/mip/HighsMipSolver.h +105 -0
- casadi/include/highs/mip/HighsMipSolverData.h +236 -0
- casadi/include/highs/mip/HighsModkSeparator.h +63 -0
- casadi/include/highs/mip/HighsNodeQueue.h +314 -0
- casadi/include/highs/mip/HighsObjectiveFunction.h +74 -0
- casadi/include/highs/mip/HighsPathSeparator.h +42 -0
- casadi/include/highs/mip/HighsPrimalHeuristics.h +68 -0
- casadi/include/highs/mip/HighsPseudocost.h +363 -0
- casadi/include/highs/mip/HighsRedcostFixing.h +45 -0
- casadi/include/highs/mip/HighsSearch.h +244 -0
- casadi/include/highs/mip/HighsSeparation.h +44 -0
- casadi/include/highs/mip/HighsSeparator.h +56 -0
- casadi/include/highs/mip/HighsTableauSeparator.h +37 -0
- casadi/include/highs/mip/HighsTransformedLp.h +66 -0
- casadi/include/highs/model/HighsHessian.h +54 -0
- casadi/include/highs/model/HighsHessianUtils.h +49 -0
- casadi/include/highs/model/HighsModel.h +52 -0
- casadi/include/highs/parallel/HighsBinarySemaphore.h +113 -0
- casadi/include/highs/parallel/HighsCacheAlign.h +87 -0
- casadi/include/highs/parallel/HighsCombinable.h +121 -0
- casadi/include/highs/parallel/HighsMutex.h +129 -0
- casadi/include/highs/parallel/HighsParallel.h +133 -0
- casadi/include/highs/parallel/HighsRaceTimer.h +43 -0
- casadi/include/highs/parallel/HighsSchedulerConstants.h +24 -0
- casadi/include/highs/parallel/HighsSpinMutex.h +53 -0
- casadi/include/highs/parallel/HighsSplitDeque.h +583 -0
- casadi/include/highs/parallel/HighsTask.h +175 -0
- casadi/include/highs/parallel/HighsTaskExecutor.h +209 -0
- casadi/include/highs/pdlp/CupdlpWrapper.h +93 -0
- casadi/include/highs/pdlp/cupdlp/cupdlp_cs.h +41 -0
- casadi/include/highs/pdlp/cupdlp/cupdlp_defs.h +423 -0
- casadi/include/highs/pdlp/cupdlp/cupdlp_linalg.h +183 -0
- casadi/include/highs/pdlp/cupdlp/cupdlp_proj.h +19 -0
- casadi/include/highs/pdlp/cupdlp/cupdlp_restart.h +31 -0
- casadi/include/highs/pdlp/cupdlp/cupdlp_scaling_cuda.h +28 -0
- casadi/include/highs/pdlp/cupdlp/cupdlp_solver.h +98 -0
- casadi/include/highs/pdlp/cupdlp/cupdlp_step.h +33 -0
- casadi/include/highs/pdlp/cupdlp/cupdlp_utils.c +1726 -0
- casadi/include/highs/pdqsort/pdqsort.h +532 -0
- casadi/include/highs/presolve/HPresolve.h +365 -0
- casadi/include/highs/presolve/HPresolveAnalysis.h +54 -0
- casadi/include/highs/presolve/HighsPostsolveStack.h +907 -0
- casadi/include/highs/presolve/HighsSymmetry.h +284 -0
- casadi/include/highs/presolve/ICrash.h +127 -0
- casadi/include/highs/presolve/ICrashUtil.h +65 -0
- casadi/include/highs/presolve/ICrashX.h +26 -0
- casadi/include/highs/presolve/PresolveComponent.h +93 -0
- casadi/include/highs/qpsolver/a_asm.hpp +67 -0
- casadi/include/highs/qpsolver/a_quass.hpp +19 -0
- casadi/include/highs/qpsolver/basis.hpp +150 -0
- casadi/include/highs/qpsolver/crashsolution.hpp +12 -0
- casadi/include/highs/qpsolver/dantzigpricing.hpp +72 -0
- casadi/include/highs/qpsolver/devexpricing.hpp +99 -0
- casadi/include/highs/qpsolver/eventhandler.hpp +23 -0
- casadi/include/highs/qpsolver/factor.hpp +400 -0
- casadi/include/highs/qpsolver/feasibility_bounded.hpp +105 -0
- casadi/include/highs/qpsolver/feasibility_highs.hpp +270 -0
- casadi/include/highs/qpsolver/gradient.hpp +39 -0
- casadi/include/highs/qpsolver/instance.hpp +63 -0
- casadi/include/highs/qpsolver/matrix.hpp +335 -0
- casadi/include/highs/qpsolver/perturbation.hpp +8 -0
- casadi/include/highs/qpsolver/pricing.hpp +15 -0
- casadi/include/highs/qpsolver/qpconst.hpp +27 -0
- casadi/include/highs/qpsolver/qpvector.hpp +235 -0
- casadi/include/highs/qpsolver/quass.hpp +20 -0
- casadi/include/highs/qpsolver/ratiotest.hpp +19 -0
- casadi/include/highs/qpsolver/runtime.hpp +38 -0
- casadi/include/highs/qpsolver/scaling.hpp +8 -0
- casadi/include/highs/qpsolver/settings.hpp +57 -0
- casadi/include/highs/qpsolver/snippets.hpp +29 -0
- casadi/include/highs/qpsolver/statistics.hpp +23 -0
- casadi/include/highs/qpsolver/steepestedgepricing.hpp +167 -0
- casadi/include/highs/simplex/HApp.h +422 -0
- casadi/include/highs/simplex/HEkk.h +403 -0
- casadi/include/highs/simplex/HEkkDual.h +515 -0
- casadi/include/highs/simplex/HEkkDualRHS.h +137 -0
- casadi/include/highs/simplex/HEkkDualRow.h +204 -0
- casadi/include/highs/simplex/HEkkPrimal.h +195 -0
- casadi/include/highs/simplex/HSimplex.h +45 -0
- casadi/include/highs/simplex/HSimplexDebug.h +51 -0
- casadi/include/highs/simplex/HSimplexNla.h +184 -0
- casadi/include/highs/simplex/HSimplexReport.h +24 -0
- casadi/include/highs/simplex/HighsSimplexAnalysis.h +503 -0
- casadi/include/highs/simplex/SimplexConst.h +274 -0
- casadi/include/highs/simplex/SimplexStruct.h +264 -0
- casadi/include/highs/simplex/SimplexTimer.h +427 -0
- casadi/include/highs/test/DevKkt.h +146 -0
- casadi/include/highs/test/KktCh2.h +82 -0
- casadi/include/highs/util/FactorTimer.h +224 -0
- casadi/include/highs/util/HFactor.h +587 -0
- casadi/include/highs/util/HFactorConst.h +84 -0
- casadi/include/highs/util/HFactorDebug.h +58 -0
- casadi/include/highs/util/HSet.h +92 -0
- casadi/include/highs/util/HVector.h +25 -0
- casadi/include/highs/util/HVectorBase.h +105 -0
- casadi/include/highs/util/HighsCDouble.h +310 -0
- casadi/include/highs/util/HighsComponent.h +56 -0
- casadi/include/highs/util/HighsDataStack.h +86 -0
- casadi/include/highs/util/HighsDisjointSets.h +110 -0
- casadi/include/highs/util/HighsHash.h +1277 -0
- casadi/include/highs/util/HighsHashTree.h +1443 -0
- casadi/include/highs/util/HighsInt.h +39 -0
- casadi/include/highs/util/HighsIntegers.h +215 -0
- casadi/include/highs/util/HighsLinearSumBounds.h +160 -0
- casadi/include/highs/util/HighsMatrixPic.h +40 -0
- casadi/include/highs/util/HighsMatrixSlice.h +564 -0
- casadi/include/highs/util/HighsMatrixUtils.h +57 -0
- casadi/include/highs/util/HighsMemoryAllocation.h +55 -0
- casadi/include/highs/util/HighsRandom.h +245 -0
- casadi/include/highs/util/HighsRbTree.h +455 -0
- casadi/include/highs/util/HighsSort.h +134 -0
- casadi/include/highs/util/HighsSparseMatrix.h +147 -0
- casadi/include/highs/util/HighsSparseVectorSum.h +98 -0
- casadi/include/highs/util/HighsSplay.h +138 -0
- casadi/include/highs/util/HighsTimer.h +343 -0
- casadi/include/highs/util/HighsUtils.h +210 -0
- casadi/include/highs/util/stringutil.h +44 -0
- casadi/include/highs/zstr/strict_fstream.hpp +237 -0
- casadi/include/highs/zstr/zstr.hpp +472 -0
- casadi/include/highs_export.h +43 -0
- casadi/include/hpipm_aux_mem.h +52 -0
- casadi/include/hpipm_aux_string.h +50 -0
- casadi/include/hpipm_common.h +76 -0
- casadi/include/hpipm_d_cast_qcqp.h +71 -0
- casadi/include/hpipm_d_cond.h +135 -0
- casadi/include/hpipm_d_cond_aux.h +92 -0
- casadi/include/hpipm_d_cond_qcqp.h +129 -0
- casadi/include/hpipm_d_core_qp_ipm.h +101 -0
- casadi/include/hpipm_d_core_qp_ipm_aux.h +68 -0
- casadi/include/hpipm_d_dense_qcqp.h +199 -0
- casadi/include/hpipm_d_dense_qcqp_dim.h +98 -0
- casadi/include/hpipm_d_dense_qcqp_ipm.h +193 -0
- casadi/include/hpipm_d_dense_qcqp_res.h +108 -0
- casadi/include/hpipm_d_dense_qcqp_sol.h +85 -0
- casadi/include/hpipm_d_dense_qcqp_utils.h +82 -0
- casadi/include/hpipm_d_dense_qp.h +207 -0
- casadi/include/hpipm_d_dense_qp_dim.h +92 -0
- casadi/include/hpipm_d_dense_qp_ipm.h +260 -0
- casadi/include/hpipm_d_dense_qp_kkt.h +72 -0
- casadi/include/hpipm_d_dense_qp_res.h +106 -0
- casadi/include/hpipm_d_dense_qp_sol.h +94 -0
- casadi/include/hpipm_d_dense_qp_utils.h +83 -0
- casadi/include/hpipm_d_ocp_qcqp.h +322 -0
- casadi/include/hpipm_d_ocp_qcqp_dim.h +130 -0
- casadi/include/hpipm_d_ocp_qcqp_ipm.h +192 -0
- casadi/include/hpipm_d_ocp_qcqp_red.h +118 -0
- casadi/include/hpipm_d_ocp_qcqp_res.h +115 -0
- casadi/include/hpipm_d_ocp_qcqp_sol.h +114 -0
- casadi/include/hpipm_d_ocp_qcqp_utils.h +81 -0
- casadi/include/hpipm_d_ocp_qp.h +306 -0
- casadi/include/hpipm_d_ocp_qp_dim.h +142 -0
- casadi/include/hpipm_d_ocp_qp_ipm.h +252 -0
- casadi/include/hpipm_d_ocp_qp_kkt.h +66 -0
- casadi/include/hpipm_d_ocp_qp_red.h +117 -0
- casadi/include/hpipm_d_ocp_qp_res.h +113 -0
- casadi/include/hpipm_d_ocp_qp_sol.h +128 -0
- casadi/include/hpipm_d_ocp_qp_utils.h +82 -0
- casadi/include/hpipm_d_part_cond.h +115 -0
- casadi/include/hpipm_d_part_cond_qcqp.h +106 -0
- casadi/include/hpipm_d_sim_erk.h +122 -0
- casadi/include/hpipm_d_sim_rk.h +71 -0
- casadi/include/hpipm_d_tree_ocp_qcqp.h +213 -0
- casadi/include/hpipm_d_tree_ocp_qcqp_dim.h +117 -0
- casadi/include/hpipm_d_tree_ocp_qcqp_ipm.h +191 -0
- casadi/include/hpipm_d_tree_ocp_qcqp_res.h +109 -0
- casadi/include/hpipm_d_tree_ocp_qcqp_sol.h +99 -0
- casadi/include/hpipm_d_tree_ocp_qcqp_utils.h +84 -0
- casadi/include/hpipm_d_tree_ocp_qp.h +195 -0
- casadi/include/hpipm_d_tree_ocp_qp_dim.h +111 -0
- casadi/include/hpipm_d_tree_ocp_qp_ipm.h +209 -0
- casadi/include/hpipm_d_tree_ocp_qp_kkt.h +52 -0
- casadi/include/hpipm_d_tree_ocp_qp_res.h +107 -0
- casadi/include/hpipm_d_tree_ocp_qp_sol.h +100 -0
- casadi/include/hpipm_d_tree_ocp_qp_utils.h +83 -0
- casadi/include/hpipm_m_dense_qp.h +68 -0
- casadi/include/hpipm_m_dense_qp_dim.h +68 -0
- casadi/include/hpipm_m_ocp_qp.h +49 -0
- casadi/include/hpipm_m_ocp_qp_ipm_hard.h +115 -0
- casadi/include/hpipm_m_ocp_qp_kkt.h +45 -0
- casadi/include/hpipm_s_cast_qcqp.h +72 -0
- casadi/include/hpipm_s_cond.h +137 -0
- casadi/include/hpipm_s_cond_aux.h +92 -0
- casadi/include/hpipm_s_cond_qcqp.h +130 -0
- casadi/include/hpipm_s_core_qp_ipm.h +101 -0
- casadi/include/hpipm_s_core_qp_ipm_aux.h +68 -0
- casadi/include/hpipm_s_dense_qcqp.h +200 -0
- casadi/include/hpipm_s_dense_qcqp_dim.h +99 -0
- casadi/include/hpipm_s_dense_qcqp_ipm.h +204 -0
- casadi/include/hpipm_s_dense_qcqp_res.h +109 -0
- casadi/include/hpipm_s_dense_qcqp_sol.h +86 -0
- casadi/include/hpipm_s_dense_qcqp_utils.h +83 -0
- casadi/include/hpipm_s_dense_qp.h +207 -0
- casadi/include/hpipm_s_dense_qp_dim.h +94 -0
- casadi/include/hpipm_s_dense_qp_ipm.h +260 -0
- casadi/include/hpipm_s_dense_qp_kkt.h +72 -0
- casadi/include/hpipm_s_dense_qp_res.h +107 -0
- casadi/include/hpipm_s_dense_qp_sol.h +94 -0
- casadi/include/hpipm_s_dense_qp_utils.h +84 -0
- casadi/include/hpipm_s_ocp_qcqp.h +322 -0
- casadi/include/hpipm_s_ocp_qcqp_dim.h +131 -0
- casadi/include/hpipm_s_ocp_qcqp_ipm.h +193 -0
- casadi/include/hpipm_s_ocp_qcqp_red.h +119 -0
- casadi/include/hpipm_s_ocp_qcqp_res.h +116 -0
- casadi/include/hpipm_s_ocp_qcqp_sol.h +115 -0
- casadi/include/hpipm_s_ocp_qcqp_utils.h +82 -0
- casadi/include/hpipm_s_ocp_qp.h +306 -0
- casadi/include/hpipm_s_ocp_qp_dim.h +141 -0
- casadi/include/hpipm_s_ocp_qp_ipm.h +252 -0
- casadi/include/hpipm_s_ocp_qp_kkt.h +66 -0
- casadi/include/hpipm_s_ocp_qp_red.h +118 -0
- casadi/include/hpipm_s_ocp_qp_res.h +115 -0
- casadi/include/hpipm_s_ocp_qp_sol.h +128 -0
- casadi/include/hpipm_s_ocp_qp_utils.h +83 -0
- casadi/include/hpipm_s_part_cond.h +115 -0
- casadi/include/hpipm_s_part_cond_qcqp.h +107 -0
- casadi/include/hpipm_s_sim_erk.h +121 -0
- casadi/include/hpipm_s_sim_rk.h +72 -0
- casadi/include/hpipm_s_tree_ocp_qcqp.h +213 -0
- casadi/include/hpipm_s_tree_ocp_qcqp_dim.h +118 -0
- casadi/include/hpipm_s_tree_ocp_qcqp_ipm.h +192 -0
- casadi/include/hpipm_s_tree_ocp_qcqp_res.h +110 -0
- casadi/include/hpipm_s_tree_ocp_qcqp_sol.h +97 -0
- casadi/include/hpipm_s_tree_ocp_qcqp_utils.h +85 -0
- casadi/include/hpipm_s_tree_ocp_qp.h +196 -0
- casadi/include/hpipm_s_tree_ocp_qp_dim.h +111 -0
- casadi/include/hpipm_s_tree_ocp_qp_ipm.h +208 -0
- casadi/include/hpipm_s_tree_ocp_qp_kkt.h +54 -0
- casadi/include/hpipm_s_tree_ocp_qp_res.h +108 -0
- casadi/include/hpipm_s_tree_ocp_qp_sol.h +98 -0
- casadi/include/hpipm_s_tree_ocp_qp_utils.h +84 -0
- casadi/include/hpipm_scenario_tree.h +70 -0
- casadi/include/hpipm_timing.h +67 -0
- casadi/include/hpipm_tree.h +76 -0
- casadi/include/licenses/CSparse/Doc/License.txt +19 -0
- casadi/include/licenses/FMI-Standard-2.0.2/LICENSE.txt +473 -0
- casadi/include/licenses/FMI-Standard-3.0/LICENSE.txt +464 -0
- casadi/include/licenses/blasfeo-external/LICENSE.txt +26 -0
- casadi/include/licenses/bonmin-external/Bonmin/LICENSE +87 -0
- casadi/include/licenses/bonmin-external/LICENSE +3 -0
- casadi/include/licenses/casadi/LICENSE/LICENSE.txt +165 -0
- casadi/include/licenses/casadi-sundials/LICENSE +64 -0
- casadi/include/licenses/casadi-sundials/cvodes/LICENSE +60 -0
- casadi/include/licenses/casadi-sundials/idas/LICENSE +59 -0
- casadi/include/licenses/casadi-sundials/kinsol/LICENSE +59 -0
- casadi/include/licenses/casadi-sundials/sundials/LICENSE +67 -0
- casadi/include/licenses/cbc-external/Cbc/LICENSE +239 -0
- casadi/include/licenses/cbc-external/LICENSE +245 -0
- casadi/include/licenses/cgl-external/Cgl/LICENSE +239 -0
- casadi/include/licenses/cgl-external/LICENSE +245 -0
- casadi/include/licenses/clp-external/Clp/LICENSE +239 -0
- casadi/include/licenses/clp-external/LICENSE +245 -0
- casadi/include/licenses/coinutils-external/CoinUtils/LICENSE +239 -0
- casadi/include/licenses/coinutils-external/LICENSE +245 -0
- casadi/include/licenses/fatrop-external/LICENSE.txt +165 -0
- casadi/include/licenses/fatrop-external/external/blasfeo/LICENSE.txt +26 -0
- casadi/include/licenses/fatrop-external/external/pybind11/LICENSE +29 -0
- casadi/include/licenses/fatrop-external/misc/license_header.txt +17 -0
- casadi/include/licenses/highs-external/LICENSE.txt +21 -0
- casadi/include/licenses/highs-external/extern/filereaderlp/LICENSE +19 -0
- casadi/include/licenses/highs-external/extern/pdqsort/license.txt +16 -0
- casadi/include/licenses/hpipm-external/LICENSE.txt +26 -0
- casadi/include/licenses/hpipm-external/experimental/andrea/prototype/code/plotregion/license.txt +24 -0
- casadi/include/licenses/ipopt-external/LICENSE +260 -0
- casadi/include/licenses/metis-external/LICENSE +87 -0
- casadi/include/licenses/metis-external/metis-4.0/LICENSE +18 -0
- casadi/include/licenses/mockups-external/LICENSE +21 -0
- casadi/include/licenses/mumps-external/LICENSE +87 -0
- casadi/include/licenses/mumps-external/MUMPS/LICENSE +50 -0
- casadi/include/licenses/osi-external/LICENSE +245 -0
- casadi/include/licenses/osi-external/Osi/LICENSE +239 -0
- casadi/include/licenses/osqp-external/LICENSE +201 -0
- casadi/include/licenses/osqp-external/lin_sys/direct/qdldl/amd/LICENSE +36 -0
- casadi/include/licenses/osqp-external/lin_sys/direct/qdldl/qdldl_sources/LICENSE +201 -0
- casadi/include/licenses/qpOASES/LICENSE.txt +503 -0
- casadi/include/licenses/sleqp-external/LICENSE +165 -0
- casadi/include/licenses/superscs-external/LICENSE.txt +24 -0
- casadi/include/licenses/tinyxml2-9.0.0/LICENSE.txt +18 -0
- casadi/include/licenses/trlib-external/LICENSE +21 -0
- casadi/include/osqp/auxil.h +181 -0
- casadi/include/osqp/constants.h +128 -0
- casadi/include/osqp/cs.h +180 -0
- casadi/include/osqp/ctrlc.h +56 -0
- casadi/include/osqp/error.h +38 -0
- casadi/include/osqp/glob_opts.h +167 -0
- casadi/include/osqp/lin_alg.h +216 -0
- casadi/include/osqp/lin_sys.h +54 -0
- casadi/include/osqp/osqp.h +430 -0
- casadi/include/osqp/osqp_configure.h +49 -0
- casadi/include/osqp/polish.h +25 -0
- casadi/include/osqp/proj.h +37 -0
- casadi/include/osqp/scaling.h +44 -0
- casadi/include/osqp/types.h +326 -0
- casadi/include/osqp/util.h +222 -0
- casadi/include/osqp/version.h +9 -0
- casadi/include/qdldl/qdldl.h +169 -0
- casadi/include/qdldl/qdldl_types.h +23 -0
- casadi/include/s_blas.h +78 -0
- casadi/include/s_blas_64.h +73 -0
- casadi/include/sleqp/defs.h +58 -0
- casadi/include/sleqp/export.h +43 -0
- casadi/include/sleqp/pub_cmp.h +18 -0
- casadi/include/sleqp/pub_dyn.h +140 -0
- casadi/include/sleqp/pub_error.h +50 -0
- casadi/include/sleqp/pub_func.h +257 -0
- casadi/include/sleqp/pub_hess_struct.h +105 -0
- casadi/include/sleqp/pub_iterate.h +88 -0
- casadi/include/sleqp/pub_log.h +88 -0
- casadi/include/sleqp/pub_lsq.h +158 -0
- casadi/include/sleqp/pub_mem.h +52 -0
- casadi/include/sleqp/pub_problem.h +213 -0
- casadi/include/sleqp/pub_scale.h +150 -0
- casadi/include/sleqp/pub_settings.h +162 -0
- casadi/include/sleqp/pub_solver.h +155 -0
- casadi/include/sleqp/pub_types.h +230 -0
- casadi/include/sleqp/pub_working_set.h +135 -0
- casadi/include/sleqp/sparse/pub_mat.h +153 -0
- casadi/include/sleqp/sparse/pub_vec.h +336 -0
- casadi/include/sleqp.h +38 -0
- casadi/include/superscs/cones.h +185 -0
- casadi/include/superscs/constants.h +144 -0
- casadi/include/superscs/cs.h +109 -0
- casadi/include/superscs/ctrlc.h +77 -0
- casadi/include/superscs/directions.h +125 -0
- casadi/include/superscs/glbopts.h +240 -0
- casadi/include/superscs/linAlg.h +437 -0
- casadi/include/superscs/linSys.h +205 -0
- casadi/include/superscs/linsys/amatrix.h +77 -0
- casadi/include/superscs/linsys/common.h +49 -0
- casadi/include/superscs/normalize.h +138 -0
- casadi/include/superscs/scs.h +656 -0
- casadi/include/superscs/scs_blas.h +79 -0
- casadi/include/superscs/scs_parser.h +187 -0
- casadi/include/superscs/unit_test_util.h +210 -0
- casadi/include/superscs/util.h +354 -0
- casadi/include/tinyxml2.h +2380 -0
- casadi/include/trlib/trlib_eigen_inverse.h +118 -0
- casadi/include/trlib/trlib_krylov.h +493 -0
- casadi/include/trlib/trlib_leftmost.h +181 -0
- casadi/include/trlib/trlib_private.h +109 -0
- casadi/include/trlib/trlib_quadratic_zero.h +57 -0
- casadi/include/trlib/trlib_tri_factor.h +409 -0
- casadi/include/trlib/trlib_types.h +36 -0
- casadi/include/trlib.h +44 -0
- casadi/lib/cmake/tinyxml2/tinyxml2-config-version.cmake +65 -0
- casadi/lib/cmake/tinyxml2/tinyxml2-config.cmake +57 -0
- casadi/lib/cmake/tinyxml2/tinyxml2-static-targets-release.cmake +19 -0
- casadi/lib/cmake/tinyxml2/tinyxml2-static-targets.cmake +107 -0
- casadi/lib/libtinyxml2.a +0 -0
- casadi/lib/pkgconfig/tinyxml2.pc +10 -0
- casadi/libCbc.3.10.11.dylib +0 -0
- casadi/libCbc.3.dylib +0 -0
- casadi/libCbc.dylib +0 -0
- casadi/libCbc.la +35 -0
- casadi/libCbcSolver.3.10.11.dylib +0 -0
- casadi/libCbcSolver.3.dylib +0 -0
- casadi/libCbcSolver.dylib +0 -0
- casadi/libCbcSolver.la +35 -0
- casadi/libCgl.1.10.8.dylib +0 -0
- casadi/libCgl.1.dylib +0 -0
- casadi/libCgl.dylib +0 -0
- casadi/libCgl.la +35 -0
- casadi/libClp.1.14.9.dylib +0 -0
- casadi/libClp.1.dylib +0 -0
- casadi/libClp.dylib +0 -0
- casadi/libClp.la +35 -0
- casadi/libClpSolver.1.14.9.dylib +0 -0
- casadi/libClpSolver.1.dylib +0 -0
- casadi/libClpSolver.dylib +0 -0
- casadi/libClpSolver.la +35 -0
- casadi/libCoinUtils.3.11.10.dylib +0 -0
- casadi/libCoinUtils.3.dylib +0 -0
- casadi/libCoinUtils.dylib +0 -0
- casadi/libCoinUtils.la +35 -0
- casadi/libOsi.1.13.9.dylib +0 -0
- casadi/libOsi.1.dylib +0 -0
- casadi/libOsi.dylib +0 -0
- casadi/libOsi.la +35 -0
- casadi/libOsiCbc.3.10.11.dylib +0 -0
- casadi/libOsiCbc.3.dylib +0 -0
- casadi/libOsiCbc.dylib +0 -0
- casadi/libOsiCbc.la +35 -0
- casadi/libOsiClp.1.14.9.dylib +0 -0
- casadi/libOsiClp.1.dylib +0 -0
- casadi/libOsiClp.dylib +0 -0
- casadi/libOsiClp.la +35 -0
- casadi/libOsiCommonTests.1.13.9.dylib +0 -0
- casadi/libOsiCommonTests.1.dylib +0 -0
- casadi/libOsiCommonTests.dylib +0 -0
- casadi/libOsiCommonTests.la +35 -0
- casadi/libblasfeo.dylib +0 -0
- casadi/libbonmin.4.8.9.dylib +0 -0
- casadi/libbonmin.4.dylib +0 -0
- casadi/libbonmin.dylib +0 -0
- casadi/libbonmin.la +35 -0
- casadi/libc++.1.0.dylib +0 -0
- casadi/libcasadi.3.7.dylib +0 -0
- casadi/libcasadi.dylib +0 -0
- casadi/libcasadi_conic_cbc.3.7.dylib +0 -0
- casadi/libcasadi_conic_cbc.dylib +0 -0
- casadi/libcasadi_conic_clp.3.7.dylib +0 -0
- casadi/libcasadi_conic_clp.dylib +0 -0
- casadi/libcasadi_conic_cplex.3.7.dylib +0 -0
- casadi/libcasadi_conic_cplex.dylib +0 -0
- casadi/libcasadi_conic_fatrop.3.7.dylib +0 -0
- casadi/libcasadi_conic_fatrop.dylib +0 -0
- casadi/libcasadi_conic_gurobi.3.7.dylib +0 -0
- casadi/libcasadi_conic_gurobi.dylib +0 -0
- casadi/libcasadi_conic_highs.3.7.dylib +0 -0
- casadi/libcasadi_conic_highs.dylib +0 -0
- casadi/libcasadi_conic_hpipm.3.7.dylib +0 -0
- casadi/libcasadi_conic_hpipm.dylib +0 -0
- casadi/libcasadi_conic_ipqp.3.7.dylib +0 -0
- casadi/libcasadi_conic_ipqp.dylib +0 -0
- casadi/libcasadi_conic_nlpsol.3.7.dylib +0 -0
- casadi/libcasadi_conic_nlpsol.dylib +0 -0
- casadi/libcasadi_conic_osqp.3.7.dylib +0 -0
- casadi/libcasadi_conic_osqp.dylib +0 -0
- casadi/libcasadi_conic_qpoases.3.7.dylib +0 -0
- casadi/libcasadi_conic_qpoases.dylib +0 -0
- casadi/libcasadi_conic_qrqp.3.7.dylib +0 -0
- casadi/libcasadi_conic_qrqp.dylib +0 -0
- casadi/libcasadi_conic_superscs.3.7.dylib +0 -0
- casadi/libcasadi_conic_superscs.dylib +0 -0
- casadi/libcasadi_importer_shell.3.7.dylib +0 -0
- casadi/libcasadi_importer_shell.dylib +0 -0
- casadi/libcasadi_integrator_collocation.3.7.dylib +0 -0
- casadi/libcasadi_integrator_collocation.dylib +0 -0
- casadi/libcasadi_integrator_cvodes.3.7.dylib +0 -0
- casadi/libcasadi_integrator_cvodes.dylib +0 -0
- casadi/libcasadi_integrator_idas.3.7.dylib +0 -0
- casadi/libcasadi_integrator_idas.dylib +0 -0
- casadi/libcasadi_integrator_rk.3.7.dylib +0 -0
- casadi/libcasadi_integrator_rk.dylib +0 -0
- casadi/libcasadi_interpolant_bspline.3.7.dylib +0 -0
- casadi/libcasadi_interpolant_bspline.dylib +0 -0
- casadi/libcasadi_interpolant_linear.3.7.dylib +0 -0
- casadi/libcasadi_interpolant_linear.dylib +0 -0
- casadi/libcasadi_linsol_csparse.3.7.dylib +0 -0
- casadi/libcasadi_linsol_csparse.dylib +0 -0
- casadi/libcasadi_linsol_csparsecholesky.3.7.dylib +0 -0
- casadi/libcasadi_linsol_csparsecholesky.dylib +0 -0
- casadi/libcasadi_linsol_lapacklu.3.7.dylib +0 -0
- casadi/libcasadi_linsol_lapacklu.dylib +0 -0
- casadi/libcasadi_linsol_lapackqr.3.7.dylib +0 -0
- casadi/libcasadi_linsol_lapackqr.dylib +0 -0
- casadi/libcasadi_linsol_ldl.3.7.dylib +0 -0
- casadi/libcasadi_linsol_ldl.dylib +0 -0
- casadi/libcasadi_linsol_lsqr.3.7.dylib +0 -0
- casadi/libcasadi_linsol_lsqr.dylib +0 -0
- casadi/libcasadi_linsol_ma27.3.7.dylib +0 -0
- casadi/libcasadi_linsol_ma27.dylib +0 -0
- casadi/libcasadi_linsol_mumps.3.7.dylib +0 -0
- casadi/libcasadi_linsol_mumps.dylib +0 -0
- casadi/libcasadi_linsol_qr.3.7.dylib +0 -0
- casadi/libcasadi_linsol_qr.dylib +0 -0
- casadi/libcasadi_linsol_symbolicqr.3.7.dylib +0 -0
- casadi/libcasadi_linsol_symbolicqr.dylib +0 -0
- casadi/libcasadi_linsol_tridiag.3.7.dylib +0 -0
- casadi/libcasadi_linsol_tridiag.dylib +0 -0
- casadi/libcasadi_nlpsol_ampl.3.7.dylib +0 -0
- casadi/libcasadi_nlpsol_ampl.dylib +0 -0
- casadi/libcasadi_nlpsol_blocksqp.3.7.dylib +0 -0
- casadi/libcasadi_nlpsol_blocksqp.dylib +0 -0
- casadi/libcasadi_nlpsol_bonmin.3.7.dylib +0 -0
- casadi/libcasadi_nlpsol_bonmin.dylib +0 -0
- casadi/libcasadi_nlpsol_fatrop.3.7.dylib +0 -0
- casadi/libcasadi_nlpsol_fatrop.dylib +0 -0
- casadi/libcasadi_nlpsol_feasiblesqpmethod.3.7.dylib +0 -0
- casadi/libcasadi_nlpsol_feasiblesqpmethod.dylib +0 -0
- casadi/libcasadi_nlpsol_ipopt.3.7.dylib +0 -0
- casadi/libcasadi_nlpsol_ipopt.dylib +0 -0
- casadi/libcasadi_nlpsol_knitro.3.7.dylib +0 -0
- casadi/libcasadi_nlpsol_knitro.dylib +0 -0
- casadi/libcasadi_nlpsol_madnlp.3.7.dylib +0 -0
- casadi/libcasadi_nlpsol_madnlp.dylib +0 -0
- casadi/libcasadi_nlpsol_qrsqp.3.7.dylib +0 -0
- casadi/libcasadi_nlpsol_qrsqp.dylib +0 -0
- casadi/libcasadi_nlpsol_scpgen.3.7.dylib +0 -0
- casadi/libcasadi_nlpsol_scpgen.dylib +0 -0
- casadi/libcasadi_nlpsol_sleqp.3.7.dylib +0 -0
- casadi/libcasadi_nlpsol_sleqp.dylib +0 -0
- casadi/libcasadi_nlpsol_snopt.3.7.dylib +0 -0
- casadi/libcasadi_nlpsol_snopt.dylib +0 -0
- casadi/libcasadi_nlpsol_sqpmethod.3.7.dylib +0 -0
- casadi/libcasadi_nlpsol_sqpmethod.dylib +0 -0
- casadi/libcasadi_rootfinder_fast_newton.3.7.dylib +0 -0
- casadi/libcasadi_rootfinder_fast_newton.dylib +0 -0
- casadi/libcasadi_rootfinder_kinsol.3.7.dylib +0 -0
- casadi/libcasadi_rootfinder_kinsol.dylib +0 -0
- casadi/libcasadi_rootfinder_newton.3.7.dylib +0 -0
- casadi/libcasadi_rootfinder_newton.dylib +0 -0
- casadi/libcasadi_rootfinder_nlpsol.3.7.dylib +0 -0
- casadi/libcasadi_rootfinder_nlpsol.dylib +0 -0
- casadi/libcasadi_sundials_common.3.7.dylib +0 -0
- casadi/libcasadi_sundials_common.dylib +0 -0
- casadi/libcasadi_xmlfile_tinyxml.3.7.dylib +0 -0
- casadi/libcasadi_xmlfile_tinyxml.dylib +0 -0
- casadi/libcoinmetis.2.dylib +0 -0
- casadi/libcoinmetis.dylib +0 -0
- casadi/libcoinmetis.la +41 -0
- casadi/libcoinmumps.3.dylib +0 -0
- casadi/libcoinmumps.dylib +0 -0
- casadi/libcoinmumps.la +41 -0
- casadi/libcplex_adaptor.dylib +0 -0
- casadi/libfatrop.dylib +0 -0
- casadi/libgcc_s.1.1.dylib +0 -0
- casadi/libgcc_s.1.dylib +0 -0
- casadi/libgfortran.5.dylib +0 -0
- casadi/libgurobi_adaptor.dylib +0 -0
- casadi/libhighs.1.7.dylib +0 -0
- casadi/libhighs.1.dylib +0 -0
- casadi/libhighs.dylib +0 -0
- casadi/libhpipm.dylib +0 -0
- casadi/libindirect.a +0 -0
- casadi/libipopt.3.dylib +0 -0
- casadi/libipopt.dylib +0 -0
- casadi/libipopt.la +41 -0
- casadi/liblinsys.a +0 -0
- casadi/libmatlab_ipc.dylib +0 -0
- casadi/libosqp.a +0 -0
- casadi/libosqp.dylib +0 -0
- casadi/libqdldl.a +0 -0
- casadi/libqdldl.dylib +0 -0
- casadi/libquadmath.0.dylib +0 -0
- casadi/libsipopt.3.dylib +0 -0
- casadi/libsipopt.dylib +0 -0
- casadi/libsipopt.la +41 -0
- casadi/libsleqp.1.0.1.dylib +0 -0
- casadi/libsleqp.dylib +0 -0
- casadi/libsuperscs.a +0 -0
- casadi/libtrlib.0.4.dylib +0 -0
- casadi/libtrlib.dylib +0 -0
- casadi/libz.1.2.13.dylib +0 -0
- casadi/pkgconfig/bonmin.pc +12 -0
- casadi/pkgconfig/casadi.pc +12 -0
- casadi/pkgconfig/cbc.pc +12 -0
- casadi/pkgconfig/cgl.pc +12 -0
- casadi/pkgconfig/clp.pc +12 -0
- casadi/pkgconfig/coinmetis.pc +13 -0
- casadi/pkgconfig/coinmumps.pc +15 -0
- casadi/pkgconfig/coinutils.pc +12 -0
- casadi/pkgconfig/highs.pc +12 -0
- casadi/pkgconfig/ipopt.pc +15 -0
- casadi/pkgconfig/osi-cbc.pc +12 -0
- casadi/pkgconfig/osi-clp.pc +12 -0
- casadi/pkgconfig/osi-unittests.pc +12 -0
- casadi/pkgconfig/osi.pc +12 -0
- casadi/pkgconfig/sleqp.pc +10 -0
- casadi/tools/__init__.py +52 -0
- casadi/tools/bounds.py +107 -0
- casadi/tools/graph/__init__.py +35 -0
- casadi/tools/graph/graph.py +747 -0
- casadi/tools/in_out.py +89 -0
- casadi/tools/structure.py +1446 -0
- casadi/tools/structure3.py +1441 -0
- casadi-3.6.7.dist-info/METADATA +45 -0
- casadi-3.6.7.dist-info/RECORD +1312 -0
- casadi-3.6.7.dist-info/WHEEL +5 -0
- dummy.txt +1 -0
@@ -0,0 +1,1416 @@
|
|
1
|
+
#
|
2
|
+
# This is a valgrind suppression file that should be used when using valgrind.
|
3
|
+
#
|
4
|
+
# Here's an example of running valgrind:
|
5
|
+
#
|
6
|
+
# cd python/dist/src
|
7
|
+
# valgrind --tool=memcheck --suppressions=Misc/valgrind-python.supp \
|
8
|
+
# ./python -E -tt ./Lib/test/regrtest.py -u bsddb,network
|
9
|
+
#
|
10
|
+
# You must edit Objects/obmalloc.c and uncomment Py_USING_MEMORY_DEBUGGER
|
11
|
+
# to use the preferred suppressions with Py_ADDRESS_IN_RANGE.
|
12
|
+
#
|
13
|
+
# If you do not want to recompile Python, you can uncomment
|
14
|
+
# suppressions for PyObject_Free and PyObject_Realloc.
|
15
|
+
#
|
16
|
+
# See Misc/README.valgrind for more information.
|
17
|
+
|
18
|
+
# all tool names: Addrcheck,Memcheck,cachegrind,helgrind,massif
|
19
|
+
{
|
20
|
+
ADDRESS_IN_RANGE/Invalid read of size 4
|
21
|
+
Memcheck:Addr4
|
22
|
+
fun:Py_ADDRESS_IN_RANGE
|
23
|
+
}
|
24
|
+
|
25
|
+
{
|
26
|
+
ADDRESS_IN_RANGE/Invalid read of size 4
|
27
|
+
Memcheck:Value4
|
28
|
+
fun:Py_ADDRESS_IN_RANGE
|
29
|
+
}
|
30
|
+
|
31
|
+
{
|
32
|
+
ADDRESS_IN_RANGE/Invalid read of size 8 (x86_64 aka amd64)
|
33
|
+
Memcheck:Value8
|
34
|
+
fun:Py_ADDRESS_IN_RANGE
|
35
|
+
}
|
36
|
+
|
37
|
+
{
|
38
|
+
ADDRESS_IN_RANGE/Conditional jump or move depends on uninitialised value
|
39
|
+
Memcheck:Cond
|
40
|
+
fun:Py_ADDRESS_IN_RANGE
|
41
|
+
}
|
42
|
+
|
43
|
+
#
|
44
|
+
# Leaks (including possible leaks)
|
45
|
+
# Hmmm, I wonder if this masks some real leaks. I think it does.
|
46
|
+
# Will need to fix that.
|
47
|
+
#
|
48
|
+
|
49
|
+
{
|
50
|
+
Suppress leaking the GIL. Happens once per process, see comment in ceval.c.
|
51
|
+
Memcheck:Leak
|
52
|
+
fun:malloc
|
53
|
+
fun:PyThread_allocate_lock
|
54
|
+
fun:PyEval_InitThreads
|
55
|
+
}
|
56
|
+
|
57
|
+
{
|
58
|
+
Suppress leaking the GIL after a fork.
|
59
|
+
Memcheck:Leak
|
60
|
+
fun:malloc
|
61
|
+
fun:PyThread_allocate_lock
|
62
|
+
fun:PyEval_ReInitThreads
|
63
|
+
}
|
64
|
+
|
65
|
+
{
|
66
|
+
Suppress leaking the autoTLSkey. This looks like it shouldn't leak though.
|
67
|
+
Memcheck:Leak
|
68
|
+
fun:malloc
|
69
|
+
fun:PyThread_create_key
|
70
|
+
fun:_PyGILState_Init
|
71
|
+
fun:Py_InitializeEx
|
72
|
+
fun:Py_Main
|
73
|
+
}
|
74
|
+
|
75
|
+
{
|
76
|
+
Hmmm, is this a real leak or like the GIL?
|
77
|
+
Memcheck:Leak
|
78
|
+
fun:malloc
|
79
|
+
fun:PyThread_ReInitTLS
|
80
|
+
}
|
81
|
+
|
82
|
+
{
|
83
|
+
Handle PyMalloc confusing valgrind (possibly leaked)
|
84
|
+
Memcheck:Leak
|
85
|
+
fun:realloc
|
86
|
+
fun:_PyObject_GC_Resize
|
87
|
+
fun:COMMENT_THIS_LINE_TO_DISABLE_LEAK_WARNING
|
88
|
+
}
|
89
|
+
|
90
|
+
{
|
91
|
+
Handle PyMalloc confusing valgrind (possibly leaked)
|
92
|
+
Memcheck:Leak
|
93
|
+
fun:malloc
|
94
|
+
fun:_PyObject_GC_New
|
95
|
+
fun:COMMENT_THIS_LINE_TO_DISABLE_LEAK_WARNING
|
96
|
+
}
|
97
|
+
|
98
|
+
{
|
99
|
+
Handle PyMalloc confusing valgrind (possibly leaked)
|
100
|
+
Memcheck:Leak
|
101
|
+
fun:malloc
|
102
|
+
fun:_PyObject_GC_NewVar
|
103
|
+
fun:COMMENT_THIS_LINE_TO_DISABLE_LEAK_WARNING
|
104
|
+
}
|
105
|
+
|
106
|
+
#
|
107
|
+
# Non-python specific leaks
|
108
|
+
#
|
109
|
+
|
110
|
+
{
|
111
|
+
Handle pthread issue (possibly leaked)
|
112
|
+
Memcheck:Leak
|
113
|
+
fun:calloc
|
114
|
+
fun:allocate_dtv
|
115
|
+
fun:_dl_allocate_tls_storage
|
116
|
+
fun:_dl_allocate_tls
|
117
|
+
}
|
118
|
+
|
119
|
+
{
|
120
|
+
Handle pthread issue (possibly leaked)
|
121
|
+
Memcheck:Leak
|
122
|
+
fun:memalign
|
123
|
+
fun:_dl_allocate_tls_storage
|
124
|
+
fun:_dl_allocate_tls
|
125
|
+
}
|
126
|
+
|
127
|
+
{
|
128
|
+
ADDRESS_IN_RANGE/Invalid read of size 4
|
129
|
+
Memcheck:Addr4
|
130
|
+
fun:PyObject_Free
|
131
|
+
}
|
132
|
+
|
133
|
+
{
|
134
|
+
ADDRESS_IN_RANGE/Invalid read of size 4
|
135
|
+
Memcheck:Value4
|
136
|
+
fun:PyObject_Free
|
137
|
+
}
|
138
|
+
|
139
|
+
{
|
140
|
+
ADDRESS_IN_RANGE/Conditional jump or move depends on uninitialised value
|
141
|
+
Memcheck:Cond
|
142
|
+
fun:PyObject_Free
|
143
|
+
}
|
144
|
+
|
145
|
+
{
|
146
|
+
ADDRESS_IN_RANGE/Invalid read of size 8
|
147
|
+
Memcheck:Addr8
|
148
|
+
fun:PyObject_Free
|
149
|
+
}
|
150
|
+
|
151
|
+
{
|
152
|
+
ADDRESS_IN_RANGE/Invalid read of size 8
|
153
|
+
Memcheck:Value8
|
154
|
+
fun:PyObject_Free
|
155
|
+
}
|
156
|
+
|
157
|
+
{
|
158
|
+
ADDRESS_IN_RANGE/Invalid read of size 4
|
159
|
+
Memcheck:Addr4
|
160
|
+
fun:PyObject_Realloc*
|
161
|
+
}
|
162
|
+
|
163
|
+
{
|
164
|
+
ADDRESS_IN_RANGE/Invalid read of size 4
|
165
|
+
Memcheck:Value4
|
166
|
+
fun:PyObject_Realloc*
|
167
|
+
}
|
168
|
+
|
169
|
+
{
|
170
|
+
ADDRESS_IN_RANGE/Invalid read of size 8
|
171
|
+
Memcheck:Addr8
|
172
|
+
fun:PyObject_Realloc*
|
173
|
+
}
|
174
|
+
|
175
|
+
{
|
176
|
+
ADDRESS_IN_RANGE/Invalid read of size 8
|
177
|
+
Memcheck:Value8
|
178
|
+
fun:PyObject_Realloc*
|
179
|
+
}
|
180
|
+
|
181
|
+
{
|
182
|
+
ADDRESS_IN_RANGE/Conditional jump or move depends on uninitialised value
|
183
|
+
Memcheck:Cond
|
184
|
+
fun:PyObject_Realloc*
|
185
|
+
}
|
186
|
+
|
187
|
+
|
188
|
+
###
|
189
|
+
### All the suppressions below are for errors that occur within libraries
|
190
|
+
### that Python uses. The problems to not appear to be related to Python's
|
191
|
+
### use of the libraries.
|
192
|
+
###
|
193
|
+
|
194
|
+
{
|
195
|
+
Generic ubuntu ld problems
|
196
|
+
Memcheck:Addr8
|
197
|
+
obj:/lib/ld-2.4.so
|
198
|
+
obj:/lib/ld-2.4.so
|
199
|
+
obj:/lib/ld-2.4.so
|
200
|
+
obj:/lib/ld-2.4.so
|
201
|
+
}
|
202
|
+
|
203
|
+
{
|
204
|
+
Generic gentoo ld problems
|
205
|
+
Memcheck:Cond
|
206
|
+
obj:/lib/ld-2.3.4.so
|
207
|
+
obj:/lib/ld-2.3.4.so
|
208
|
+
obj:/lib/ld-2.3.4.so
|
209
|
+
obj:/lib/ld-2.3.4.so
|
210
|
+
}
|
211
|
+
|
212
|
+
{
|
213
|
+
DBM problems, see test_dbm
|
214
|
+
Memcheck:Param
|
215
|
+
write(buf)
|
216
|
+
fun:write
|
217
|
+
obj:/usr/lib/libdb1.so.2
|
218
|
+
obj:/usr/lib/libdb1.so.2
|
219
|
+
obj:/usr/lib/libdb1.so.2
|
220
|
+
obj:/usr/lib/libdb1.so.2
|
221
|
+
fun:dbm_close
|
222
|
+
}
|
223
|
+
|
224
|
+
{
|
225
|
+
DBM problems, see test_dbm
|
226
|
+
Memcheck:Value8
|
227
|
+
fun:memmove
|
228
|
+
obj:/usr/lib/libdb1.so.2
|
229
|
+
obj:/usr/lib/libdb1.so.2
|
230
|
+
obj:/usr/lib/libdb1.so.2
|
231
|
+
obj:/usr/lib/libdb1.so.2
|
232
|
+
fun:dbm_store
|
233
|
+
fun:dbm_ass_sub
|
234
|
+
}
|
235
|
+
|
236
|
+
{
|
237
|
+
DBM problems, see test_dbm
|
238
|
+
Memcheck:Cond
|
239
|
+
obj:/usr/lib/libdb1.so.2
|
240
|
+
obj:/usr/lib/libdb1.so.2
|
241
|
+
obj:/usr/lib/libdb1.so.2
|
242
|
+
fun:dbm_store
|
243
|
+
fun:dbm_ass_sub
|
244
|
+
}
|
245
|
+
|
246
|
+
{
|
247
|
+
DBM problems, see test_dbm
|
248
|
+
Memcheck:Cond
|
249
|
+
fun:memmove
|
250
|
+
obj:/usr/lib/libdb1.so.2
|
251
|
+
obj:/usr/lib/libdb1.so.2
|
252
|
+
obj:/usr/lib/libdb1.so.2
|
253
|
+
obj:/usr/lib/libdb1.so.2
|
254
|
+
fun:dbm_store
|
255
|
+
fun:dbm_ass_sub
|
256
|
+
}
|
257
|
+
|
258
|
+
{
|
259
|
+
GDBM problems, see test_gdbm
|
260
|
+
Memcheck:Param
|
261
|
+
write(buf)
|
262
|
+
fun:write
|
263
|
+
fun:gdbm_open
|
264
|
+
|
265
|
+
}
|
266
|
+
|
267
|
+
{
|
268
|
+
ZLIB problems, see test_gzip
|
269
|
+
Memcheck:Cond
|
270
|
+
obj:/lib/libz.so.1.2.3
|
271
|
+
obj:/lib/libz.so.1.2.3
|
272
|
+
fun:deflate
|
273
|
+
}
|
274
|
+
|
275
|
+
{
|
276
|
+
Avoid problems w/readline doing a putenv and leaking on exit
|
277
|
+
Memcheck:Leak
|
278
|
+
fun:malloc
|
279
|
+
fun:xmalloc
|
280
|
+
fun:sh_set_lines_and_columns
|
281
|
+
fun:_rl_get_screen_size
|
282
|
+
fun:_rl_init_terminal_io
|
283
|
+
obj:/lib/libreadline.so.4.3
|
284
|
+
fun:rl_initialize
|
285
|
+
}
|
286
|
+
|
287
|
+
###
|
288
|
+
### These occur from somewhere within the SSL, when running
|
289
|
+
### test_socket_sll. They are too general to leave on by default.
|
290
|
+
###
|
291
|
+
###{
|
292
|
+
### somewhere in SSL stuff
|
293
|
+
### Memcheck:Cond
|
294
|
+
### fun:memset
|
295
|
+
###}
|
296
|
+
###{
|
297
|
+
### somewhere in SSL stuff
|
298
|
+
### Memcheck:Value4
|
299
|
+
### fun:memset
|
300
|
+
###}
|
301
|
+
###
|
302
|
+
###{
|
303
|
+
### somewhere in SSL stuff
|
304
|
+
### Memcheck:Cond
|
305
|
+
### fun:MD5_Update
|
306
|
+
###}
|
307
|
+
###
|
308
|
+
###{
|
309
|
+
### somewhere in SSL stuff
|
310
|
+
### Memcheck:Value4
|
311
|
+
### fun:MD5_Update
|
312
|
+
###}
|
313
|
+
|
314
|
+
#
|
315
|
+
# All of these problems come from using test_socket_ssl
|
316
|
+
#
|
317
|
+
{
|
318
|
+
from test_socket_ssl
|
319
|
+
Memcheck:Cond
|
320
|
+
fun:BN_bin2bn
|
321
|
+
}
|
322
|
+
|
323
|
+
{
|
324
|
+
from test_socket_ssl
|
325
|
+
Memcheck:Cond
|
326
|
+
fun:BN_num_bits_word
|
327
|
+
}
|
328
|
+
|
329
|
+
{
|
330
|
+
from test_socket_ssl
|
331
|
+
Memcheck:Value4
|
332
|
+
fun:BN_num_bits_word
|
333
|
+
}
|
334
|
+
|
335
|
+
{
|
336
|
+
from test_socket_ssl
|
337
|
+
Memcheck:Cond
|
338
|
+
fun:BN_mod_exp_mont_word
|
339
|
+
}
|
340
|
+
|
341
|
+
{
|
342
|
+
from test_socket_ssl
|
343
|
+
Memcheck:Cond
|
344
|
+
fun:BN_mod_exp_mont
|
345
|
+
}
|
346
|
+
|
347
|
+
{
|
348
|
+
from test_socket_ssl
|
349
|
+
Memcheck:Param
|
350
|
+
write(buf)
|
351
|
+
fun:write
|
352
|
+
obj:/usr/lib/libcrypto.so.0.9.7
|
353
|
+
}
|
354
|
+
|
355
|
+
{
|
356
|
+
from test_socket_ssl
|
357
|
+
Memcheck:Cond
|
358
|
+
fun:RSA_verify
|
359
|
+
}
|
360
|
+
|
361
|
+
{
|
362
|
+
from test_socket_ssl
|
363
|
+
Memcheck:Value4
|
364
|
+
fun:RSA_verify
|
365
|
+
}
|
366
|
+
|
367
|
+
{
|
368
|
+
from test_socket_ssl
|
369
|
+
Memcheck:Value4
|
370
|
+
fun:DES_set_key_unchecked
|
371
|
+
}
|
372
|
+
|
373
|
+
{
|
374
|
+
from test_socket_ssl
|
375
|
+
Memcheck:Value4
|
376
|
+
fun:DES_encrypt2
|
377
|
+
}
|
378
|
+
|
379
|
+
{
|
380
|
+
from test_socket_ssl
|
381
|
+
Memcheck:Cond
|
382
|
+
obj:/usr/lib/libssl.so.0.9.7
|
383
|
+
}
|
384
|
+
|
385
|
+
{
|
386
|
+
from test_socket_ssl
|
387
|
+
Memcheck:Value4
|
388
|
+
obj:/usr/lib/libssl.so.0.9.7
|
389
|
+
}
|
390
|
+
|
391
|
+
{
|
392
|
+
from test_socket_ssl
|
393
|
+
Memcheck:Cond
|
394
|
+
fun:BUF_MEM_grow_clean
|
395
|
+
}
|
396
|
+
|
397
|
+
{
|
398
|
+
from test_socket_ssl
|
399
|
+
Memcheck:Cond
|
400
|
+
fun:memcpy
|
401
|
+
fun:ssl3_read_bytes
|
402
|
+
}
|
403
|
+
|
404
|
+
{
|
405
|
+
from test_socket_ssl
|
406
|
+
Memcheck:Cond
|
407
|
+
fun:SHA1_Update
|
408
|
+
}
|
409
|
+
|
410
|
+
{
|
411
|
+
from test_socket_ssl
|
412
|
+
Memcheck:Value4
|
413
|
+
fun:SHA1_Update
|
414
|
+
}
|
415
|
+
|
416
|
+
# Extra
|
417
|
+
|
418
|
+
{
|
419
|
+
extra1
|
420
|
+
Memcheck:Addr4
|
421
|
+
fun:PyObject_GC_Del
|
422
|
+
obj:/usr/bin/python2.7
|
423
|
+
}
|
424
|
+
|
425
|
+
{
|
426
|
+
extra2
|
427
|
+
Memcheck:Addr4
|
428
|
+
fun:PyGrammar_RemoveAccelerators
|
429
|
+
fun:Py_Finalize
|
430
|
+
}
|
431
|
+
|
432
|
+
{
|
433
|
+
extra3
|
434
|
+
Memcheck:Addr4
|
435
|
+
fun:_PyString_Resize
|
436
|
+
fun:PyString_Format
|
437
|
+
fun:PyEval_EvalFrameEx
|
438
|
+
}
|
439
|
+
|
440
|
+
{
|
441
|
+
extra4
|
442
|
+
Memcheck:Addr4
|
443
|
+
obj:/usr/bin/python2.7
|
444
|
+
fun:PyString_Format
|
445
|
+
fun:PyEval_EvalFrameEx
|
446
|
+
}
|
447
|
+
|
448
|
+
{
|
449
|
+
extra5
|
450
|
+
Memcheck:Value8
|
451
|
+
fun:PyObject_GC_Del
|
452
|
+
fun:PyDict_Fini
|
453
|
+
}
|
454
|
+
|
455
|
+
{
|
456
|
+
extra6
|
457
|
+
Memcheck:Cond
|
458
|
+
fun:PyObject_GC_Del
|
459
|
+
fun:PyDict_Fini
|
460
|
+
}
|
461
|
+
|
462
|
+
{
|
463
|
+
extra7
|
464
|
+
Memcheck:Cond
|
465
|
+
fun:_PyString_Resize
|
466
|
+
fun:PyString_Format
|
467
|
+
fun:PyEval_EvalFrameEx
|
468
|
+
}
|
469
|
+
|
470
|
+
{
|
471
|
+
extra8
|
472
|
+
Memcheck:Addr4
|
473
|
+
obj:/usr/bin/python2.7
|
474
|
+
fun:PyUnicodeUCS4_Join
|
475
|
+
obj:/usr/bin/python2.7
|
476
|
+
}
|
477
|
+
|
478
|
+
{
|
479
|
+
extra9
|
480
|
+
Memcheck:Cond
|
481
|
+
fun:PyObject_GC_Del
|
482
|
+
obj:/usr/bin/python2.7
|
483
|
+
}
|
484
|
+
|
485
|
+
{
|
486
|
+
extra10
|
487
|
+
Memcheck:Value8
|
488
|
+
fun:PyObject_GC_Del
|
489
|
+
obj:/usr/bin/python2.7
|
490
|
+
}
|
491
|
+
|
492
|
+
{
|
493
|
+
extra11
|
494
|
+
Memcheck:Cond
|
495
|
+
fun:PyObject_GC_Del
|
496
|
+
obj:/usr/bin/python2.7
|
497
|
+
}
|
498
|
+
|
499
|
+
{
|
500
|
+
extra12
|
501
|
+
Memcheck:Cond
|
502
|
+
fun:PyGrammar_RemoveAccelerators
|
503
|
+
fun:Py_Finalize
|
504
|
+
}
|
505
|
+
|
506
|
+
{
|
507
|
+
extra13
|
508
|
+
Memcheck:Value8
|
509
|
+
fun:PyGrammar_RemoveAccelerators
|
510
|
+
fun:Py_Finalize
|
511
|
+
}
|
512
|
+
|
513
|
+
{
|
514
|
+
leak in numpy 1:1.7.1-3
|
515
|
+
Memcheck:Leak
|
516
|
+
fun:malloc
|
517
|
+
fun:initialize_builtin_datetime_metadata
|
518
|
+
fun:initmultiarray
|
519
|
+
fun:_PyImport_LoadDynamicModule
|
520
|
+
}
|
521
|
+
|
522
|
+
{
|
523
|
+
leak2 in numpy 1:1.7.1-3
|
524
|
+
Memcheck:Leak
|
525
|
+
fun:malloc
|
526
|
+
obj:/usr/lib/pyshared/python2.7/numpy/lib/_compiled_base.so
|
527
|
+
}
|
528
|
+
|
529
|
+
{
|
530
|
+
memory leak in swig multiple modules
|
531
|
+
Memcheck:Leak
|
532
|
+
fun:malloc
|
533
|
+
fun:SwigPyClientData_New
|
534
|
+
fun:*_swigregister
|
535
|
+
fun:PyEval_EvalFrameEx
|
536
|
+
...
|
537
|
+
fun:PyImport_ExecCodeModuleEx
|
538
|
+
}
|
539
|
+
|
540
|
+
{
|
541
|
+
leak in numpy 1.8.1
|
542
|
+
Memcheck:Leak
|
543
|
+
fun:malloc
|
544
|
+
obj:/usr/lib/python2.7/dist-packages/numpy/lib/_compiled_base.so
|
545
|
+
fun:PyEval_EvalFrameEx
|
546
|
+
fun:PyEval_EvalCode
|
547
|
+
fun:PyImport_ExecCodeModuleEx
|
548
|
+
}
|
549
|
+
|
550
|
+
{
|
551
|
+
bug in numpy 1.8.1
|
552
|
+
Memcheck:Addr4
|
553
|
+
fun:_PyString_Resize
|
554
|
+
...
|
555
|
+
fun:PyAST_Compile
|
556
|
+
fun:PyRun_StringFlags
|
557
|
+
...
|
558
|
+
fun:PyImport_ExecCodeModuleEx
|
559
|
+
...
|
560
|
+
fun:PyImport_ImportModuleLevel
|
561
|
+
}
|
562
|
+
|
563
|
+
{
|
564
|
+
No idea what this is
|
565
|
+
Memcheck:Addr4
|
566
|
+
fun:_PyString_Resize
|
567
|
+
fun:assemble.35298
|
568
|
+
fun:compiler_body.35590
|
569
|
+
fun:compiler_body.35590
|
570
|
+
fun:PyAST_Compile
|
571
|
+
fun:run_mod.42573.2971
|
572
|
+
fun:PyRun_FileExFlags
|
573
|
+
fun:PyRun_SimpleFileExFlags
|
574
|
+
}
|
575
|
+
|
576
|
+
{
|
577
|
+
matplotlib leak
|
578
|
+
Memcheck:Leak
|
579
|
+
match-leak-kinds: definite
|
580
|
+
fun:_Znwm
|
581
|
+
fun:_ZN2Py19ExtensionModuleBase10initializeEPKc
|
582
|
+
}
|
583
|
+
|
584
|
+
{
|
585
|
+
Travis errors (1)
|
586
|
+
Memcheck:Cond
|
587
|
+
obj:/usr/bin/python2.7
|
588
|
+
fun:_PyObject_GC_Resize
|
589
|
+
fun:PyFrame_New
|
590
|
+
}
|
591
|
+
|
592
|
+
{
|
593
|
+
Travis errors (2)
|
594
|
+
Memcheck:Value8
|
595
|
+
obj:/usr/bin/python2.7
|
596
|
+
fun:_PyObject_GC_Resize
|
597
|
+
fun:PyFrame_New
|
598
|
+
}
|
599
|
+
|
600
|
+
|
601
|
+
{
|
602
|
+
Travis errors (3)
|
603
|
+
Memcheck:Addr4
|
604
|
+
obj:/usr/bin/python2.7
|
605
|
+
fun:_PyString_Resize
|
606
|
+
fun:PyString_Format
|
607
|
+
fun:PyEval_EvalFrameEx
|
608
|
+
}
|
609
|
+
|
610
|
+
{
|
611
|
+
Travis errors (4)
|
612
|
+
Memcheck:Addr4
|
613
|
+
...
|
614
|
+
fun:PyAST_Compile
|
615
|
+
}
|
616
|
+
|
617
|
+
{
|
618
|
+
Travis errors (5)
|
619
|
+
Memcheck:Value8
|
620
|
+
...
|
621
|
+
fun:PyAST_Compile
|
622
|
+
}
|
623
|
+
|
624
|
+
|
625
|
+
{
|
626
|
+
Travis errors (5)
|
627
|
+
Memcheck:Cond
|
628
|
+
...
|
629
|
+
fun:PyAST_Compile
|
630
|
+
}
|
631
|
+
|
632
|
+
|
633
|
+
{
|
634
|
+
|
635
|
+
another weird error
|
636
|
+
Memcheck:Addr4
|
637
|
+
obj:/usr/bin/python2.7
|
638
|
+
obj:/usr/bin/python2.7
|
639
|
+
obj:/usr/bin/python2.7
|
640
|
+
obj:/usr/bin/python2.7
|
641
|
+
obj:/usr/bin/python2.7
|
642
|
+
obj:/usr/bin/python2.7
|
643
|
+
obj:/usr/bin/python2.7
|
644
|
+
obj:/usr/bin/python2.7
|
645
|
+
obj:/usr/bin/python2.7
|
646
|
+
obj:/usr/bin/python2.7
|
647
|
+
}
|
648
|
+
|
649
|
+
{
|
650
|
+
|
651
|
+
another weird error (bis)
|
652
|
+
Memcheck:Cond
|
653
|
+
obj:/usr/bin/python2.7
|
654
|
+
obj:/usr/bin/python2.7
|
655
|
+
obj:/usr/bin/python2.7
|
656
|
+
obj:/usr/bin/python2.7
|
657
|
+
obj:/usr/bin/python2.7
|
658
|
+
obj:/usr/bin/python2.7
|
659
|
+
obj:/usr/bin/python2.7
|
660
|
+
obj:/usr/bin/python2.7
|
661
|
+
obj:/usr/bin/python2.7
|
662
|
+
obj:/usr/bin/python2.7
|
663
|
+
}
|
664
|
+
|
665
|
+
|
666
|
+
{
|
667
|
+
|
668
|
+
another weird error (tris)
|
669
|
+
Memcheck:Value8
|
670
|
+
obj:/usr/bin/python2.7
|
671
|
+
obj:/usr/bin/python2.7
|
672
|
+
obj:/usr/bin/python2.7
|
673
|
+
obj:/usr/bin/python2.7
|
674
|
+
obj:/usr/bin/python2.7
|
675
|
+
obj:/usr/bin/python2.7
|
676
|
+
obj:/usr/bin/python2.7
|
677
|
+
obj:/usr/bin/python2.7
|
678
|
+
obj:/usr/bin/python2.7
|
679
|
+
obj:/usr/bin/python2.7
|
680
|
+
}
|
681
|
+
|
682
|
+
|
683
|
+
{
|
684
|
+
numpy issues
|
685
|
+
Memcheck:Addr4
|
686
|
+
...
|
687
|
+
obj:*umath.so
|
688
|
+
}
|
689
|
+
|
690
|
+
{
|
691
|
+
more numpy issues
|
692
|
+
Memcheck:Cond
|
693
|
+
...
|
694
|
+
obj:*umath.so
|
695
|
+
}
|
696
|
+
|
697
|
+
{
|
698
|
+
othe assorted issues 1
|
699
|
+
Memcheck:Value8
|
700
|
+
...
|
701
|
+
fun:PyParser_ASTFromFile
|
702
|
+
}
|
703
|
+
|
704
|
+
{
|
705
|
+
othe assorted issues 2
|
706
|
+
Memcheck:Addr4
|
707
|
+
...
|
708
|
+
fun:PyParser_ASTFromFile
|
709
|
+
}
|
710
|
+
|
711
|
+
|
712
|
+
{
|
713
|
+
othe assorted issues 3
|
714
|
+
Memcheck:Cond
|
715
|
+
...
|
716
|
+
fun:PyParser_ASTFromFile
|
717
|
+
}
|
718
|
+
|
719
|
+
{
|
720
|
+
more issues
|
721
|
+
Memcheck:Value8
|
722
|
+
obj:/usr/bin/python2.7
|
723
|
+
fun:_PyString_Resize
|
724
|
+
fun:PyString_FromFormatV
|
725
|
+
fun:PyString_FromFormat
|
726
|
+
obj:*umath*
|
727
|
+
}
|
728
|
+
|
729
|
+
{
|
730
|
+
py3 A
|
731
|
+
Memcheck:Leak
|
732
|
+
match-leak-kinds: definite
|
733
|
+
fun:malloc
|
734
|
+
fun:PyBytes_FromStringAndSize
|
735
|
+
fun:PyUnicodeUCS4_EncodeUTF8
|
736
|
+
obj:/usr/lib/python3/dist-packages/numpy/lib/_compiled_base.cpython-32mu.so
|
737
|
+
}
|
738
|
+
|
739
|
+
{
|
740
|
+
py3 B
|
741
|
+
Memcheck:Leak
|
742
|
+
match-leak-kinds: definite
|
743
|
+
fun:realloc
|
744
|
+
fun:_PyBytes_Resize
|
745
|
+
fun:PyUnicodeUCS4_EncodeUTF8
|
746
|
+
obj:/usr/lib/python3/dist-packages/numpy/lib/_compiled_base.cpython-32mu.so
|
747
|
+
}
|
748
|
+
|
749
|
+
{
|
750
|
+
py3.4 A
|
751
|
+
Memcheck:Addr4
|
752
|
+
...
|
753
|
+
obj:/usr/bin/python*
|
754
|
+
fun:PyGrammar_RemoveAccelerators
|
755
|
+
fun:Py_Finalize
|
756
|
+
fun:Py_Exit
|
757
|
+
}
|
758
|
+
|
759
|
+
{
|
760
|
+
py3.4 B
|
761
|
+
Memcheck:Leak
|
762
|
+
match-leak-kinds: definite
|
763
|
+
fun:malloc
|
764
|
+
...
|
765
|
+
obj:/usr/bin/python*
|
766
|
+
fun:PyUnicode_New
|
767
|
+
fun:PyUnicode_Substring
|
768
|
+
...
|
769
|
+
obj:/usr/bin/python*
|
770
|
+
}
|
771
|
+
|
772
|
+
{
|
773
|
+
py3.4 C
|
774
|
+
Memcheck:Addr4
|
775
|
+
...
|
776
|
+
obj:/usr/bin/python*
|
777
|
+
fun:_PyGC_CollectNoFail
|
778
|
+
}
|
779
|
+
|
780
|
+
{
|
781
|
+
py3.4 E
|
782
|
+
Memcheck:Value8
|
783
|
+
...
|
784
|
+
obj:/usr/bin/python*
|
785
|
+
fun:_PyGC_CollectNoFail
|
786
|
+
}
|
787
|
+
|
788
|
+
{
|
789
|
+
py3.4 Ebis
|
790
|
+
Memcheck:Cond
|
791
|
+
...
|
792
|
+
obj:/usr/bin/python*
|
793
|
+
fun:_PyGC_CollectNoFail
|
794
|
+
}
|
795
|
+
|
796
|
+
{
|
797
|
+
py3.4 D
|
798
|
+
Memcheck:Leak
|
799
|
+
match-leak-kinds: definite
|
800
|
+
fun:malloc
|
801
|
+
...
|
802
|
+
obj:/usr/bin/python*
|
803
|
+
fun:PyBytes_FromStringAndSize
|
804
|
+
}
|
805
|
+
|
806
|
+
|
807
|
+
|
808
|
+
{
|
809
|
+
py3.4 F
|
810
|
+
Memcheck:Value8
|
811
|
+
...
|
812
|
+
fun:_PyObject_GC_Malloc
|
813
|
+
}
|
814
|
+
|
815
|
+
{
|
816
|
+
py3.4 G
|
817
|
+
Memcheck:Addr4
|
818
|
+
...
|
819
|
+
obj:/usr/bin/python*
|
820
|
+
fun:_PyModule_ClearDict
|
821
|
+
fun:PyImport_Cleanup
|
822
|
+
fun:Py_Finalize
|
823
|
+
fun:Py_Exit
|
824
|
+
...
|
825
|
+
obj:/usr/bin/python*
|
826
|
+
fun:PyErr_PrintEx
|
827
|
+
fun:PyRun_SimpleFileExFlags
|
828
|
+
fun:Py_Main
|
829
|
+
fun:main
|
830
|
+
}
|
831
|
+
|
832
|
+
{
|
833
|
+
py3.4 H
|
834
|
+
Memcheck:Cond
|
835
|
+
...
|
836
|
+
obj:/usr/bin/python*
|
837
|
+
fun:PyType_GenericAlloc
|
838
|
+
...
|
839
|
+
obj:/usr/bin/python*
|
840
|
+
fun:PyObject_Call
|
841
|
+
fun:PyEval_CallObjectWithKeywords
|
842
|
+
}
|
843
|
+
|
844
|
+
{
|
845
|
+
py3.4 I
|
846
|
+
Memcheck:Addr4
|
847
|
+
...
|
848
|
+
obj:/usr/bin/python*
|
849
|
+
fun:PyEval_EvalCodeEx
|
850
|
+
fun:PyEval_EvalFrameEx
|
851
|
+
fun:PyEval_EvalCodeEx
|
852
|
+
...
|
853
|
+
obj:/usr/bin/python*
|
854
|
+
fun:PyObject_SetAttr
|
855
|
+
fun:PyEval_EvalFrameEx
|
856
|
+
fun:PyEval_EvalCodeEx
|
857
|
+
...
|
858
|
+
}
|
859
|
+
|
860
|
+
|
861
|
+
{
|
862
|
+
py3.4 J
|
863
|
+
Memcheck:Cond
|
864
|
+
...
|
865
|
+
obj:/usr/bin/python*
|
866
|
+
fun:PyEval_EvalFrameEx
|
867
|
+
...
|
868
|
+
obj:/usr/bin/python*
|
869
|
+
fun:PyEval_EvalCodeEx
|
870
|
+
...
|
871
|
+
obj:/usr/bin/python*
|
872
|
+
fun:PyObject_Call
|
873
|
+
fun:_PyObject_CallMethodIdObjArgs
|
874
|
+
}
|
875
|
+
|
876
|
+
|
877
|
+
{
|
878
|
+
py3.4 K
|
879
|
+
Memcheck:Addr4
|
880
|
+
...
|
881
|
+
obj:/usr/bin/python*
|
882
|
+
fun:PyFrame_ClearFreeList
|
883
|
+
...
|
884
|
+
obj:/usr/bin/python*
|
885
|
+
fun:PyType_GenericAlloc
|
886
|
+
...
|
887
|
+
obj:/usr/bin/python*
|
888
|
+
fun:PyObject_Call
|
889
|
+
fun:PyEval_CallObjectWithKeywords
|
890
|
+
fun:PyErr_SetObject
|
891
|
+
fun:PyErr_Format
|
892
|
+
fun:_PyObject_GetAttrId
|
893
|
+
}
|
894
|
+
|
895
|
+
|
896
|
+
{
|
897
|
+
py3.4 L
|
898
|
+
Memcheck:Value8
|
899
|
+
obj:/usr/bin/python*
|
900
|
+
fun:PyEval_EvalFrameEx
|
901
|
+
fun:PyEval_EvalFrameEx
|
902
|
+
fun:PyEval_EvalFrameEx
|
903
|
+
fun:PyEval_EvalFrameEx
|
904
|
+
fun:PyEval_EvalFrameEx
|
905
|
+
fun:PyEval_EvalFrameEx
|
906
|
+
fun:PyEval_EvalCodeEx
|
907
|
+
...
|
908
|
+
obj:/usr/bin/python*
|
909
|
+
fun:PyObject_Call
|
910
|
+
fun:_PyObject_CallMethodIdObjArgs
|
911
|
+
fun:PyImport_ImportModuleLevelObject
|
912
|
+
}
|
913
|
+
|
914
|
+
|
915
|
+
{
|
916
|
+
py3.4 M
|
917
|
+
Memcheck:Addr4
|
918
|
+
obj:/usr/bin/python*
|
919
|
+
fun:PyFrame_ClearFreeList
|
920
|
+
obj:/usr/bin/python*
|
921
|
+
obj:/usr/bin/python*
|
922
|
+
obj:/usr/bin/python*
|
923
|
+
obj:/usr/bin/python*
|
924
|
+
fun:PyObject_Call
|
925
|
+
fun:PyEval_EvalFrameEx
|
926
|
+
fun:PyEval_EvalCodeEx
|
927
|
+
fun:PyEval_EvalFrameEx
|
928
|
+
fun:PyEval_EvalCodeEx
|
929
|
+
fun:PyEval_EvalFrameEx
|
930
|
+
}
|
931
|
+
|
932
|
+
{
|
933
|
+
py3.4 N
|
934
|
+
Memcheck:Addr4
|
935
|
+
obj:/usr/bin/python*
|
936
|
+
obj:/usr/bin/python*
|
937
|
+
obj:/usr/bin/python*
|
938
|
+
fun:PyEval_EvalFrameEx
|
939
|
+
fun:PyEval_EvalFrameEx
|
940
|
+
fun:PyEval_EvalCodeEx
|
941
|
+
fun:PyEval_EvalFrameEx
|
942
|
+
fun:PyEval_EvalCodeEx
|
943
|
+
obj:/usr/bin/python*
|
944
|
+
fun:PyObject_Call
|
945
|
+
fun:PyEval_EvalFrameEx
|
946
|
+
fun:PyEval_EvalCodeEx
|
947
|
+
}
|
948
|
+
|
949
|
+
{
|
950
|
+
py3.4 O
|
951
|
+
Memcheck:Addr4
|
952
|
+
obj:/usr/bin/python*
|
953
|
+
obj:*numpy*
|
954
|
+
obj:*numpy*
|
955
|
+
obj:*numpy*
|
956
|
+
fun:PyObject_CallFunctionObjArgs
|
957
|
+
obj:/usr/bin/python*
|
958
|
+
obj:/usr/bin/python*
|
959
|
+
fun:PyEval_EvalFrameEx
|
960
|
+
fun:PyEval_EvalCodeEx
|
961
|
+
obj:/usr/bin/python*
|
962
|
+
fun:PyObject_Call
|
963
|
+
fun:PyEval_EvalFrameEx
|
964
|
+
}
|
965
|
+
|
966
|
+
{
|
967
|
+
py3.4 Obis
|
968
|
+
Memcheck:Addr4
|
969
|
+
obj:/usr/bin/python*
|
970
|
+
obj:*numpy*
|
971
|
+
obj:*numpy*
|
972
|
+
obj:*numpy*
|
973
|
+
fun:PyObject_Call
|
974
|
+
fun:PyEval_EvalFrameEx
|
975
|
+
fun:PyEval_EvalCodeEx
|
976
|
+
fun:PyEval_EvalFrameEx
|
977
|
+
fun:PyEval_EvalFrameEx
|
978
|
+
fun:PyEval_EvalFrameEx
|
979
|
+
fun:PyEval_EvalCodeEx
|
980
|
+
obj:/usr/bin/python*
|
981
|
+
}
|
982
|
+
|
983
|
+
|
984
|
+
|
985
|
+
{
|
986
|
+
py3.4 P
|
987
|
+
Memcheck:Cond
|
988
|
+
obj:/usr/bin/python*
|
989
|
+
obj:/usr/bin/python*
|
990
|
+
obj:/usr/bin/python*
|
991
|
+
fun:_PyModule_ClearDict
|
992
|
+
fun:PyImport_Cleanup
|
993
|
+
fun:Py_Finalize
|
994
|
+
fun:Py_Exit
|
995
|
+
obj:/usr/bin/python*
|
996
|
+
fun:PyErr_PrintEx
|
997
|
+
fun:PyRun_SimpleFileExFlags
|
998
|
+
fun:Py_Main
|
999
|
+
fun:main
|
1000
|
+
}
|
1001
|
+
|
1002
|
+
{
|
1003
|
+
py3.4 Pbis
|
1004
|
+
Memcheck:Value8
|
1005
|
+
obj:/usr/bin/python*
|
1006
|
+
obj:/usr/bin/python*
|
1007
|
+
obj:/usr/bin/python*
|
1008
|
+
fun:_PyModule_ClearDict
|
1009
|
+
fun:PyImport_Cleanup
|
1010
|
+
fun:Py_Finalize
|
1011
|
+
fun:Py_Exit
|
1012
|
+
obj:/usr/bin/python*
|
1013
|
+
fun:PyErr_PrintEx
|
1014
|
+
fun:PyRun_SimpleFileExFlags
|
1015
|
+
fun:Py_Main
|
1016
|
+
fun:main
|
1017
|
+
}
|
1018
|
+
|
1019
|
+
{
|
1020
|
+
py3.4 Ptris
|
1021
|
+
Memcheck:Addr4
|
1022
|
+
obj:/usr/bin/python*
|
1023
|
+
obj:/usr/bin/python*
|
1024
|
+
obj:/usr/bin/python*
|
1025
|
+
fun:_PyModule_ClearDict
|
1026
|
+
fun:PyImport_Cleanup
|
1027
|
+
fun:Py_Finalize
|
1028
|
+
fun:Py_Exit
|
1029
|
+
obj:/usr/bin/python*
|
1030
|
+
fun:PyErr_PrintEx
|
1031
|
+
fun:PyRun_SimpleFileExFlags
|
1032
|
+
fun:Py_Main
|
1033
|
+
fun:main
|
1034
|
+
}
|
1035
|
+
|
1036
|
+
{
|
1037
|
+
py3.4 Pquat
|
1038
|
+
Memcheck:Addr8
|
1039
|
+
obj:/usr/bin/python*
|
1040
|
+
obj:/usr/bin/python*
|
1041
|
+
obj:/usr/bin/python*
|
1042
|
+
fun:_PyModule_ClearDict
|
1043
|
+
fun:PyImport_Cleanup
|
1044
|
+
fun:Py_Finalize
|
1045
|
+
fun:Py_Exit
|
1046
|
+
obj:/usr/bin/python*
|
1047
|
+
fun:PyErr_PrintEx
|
1048
|
+
fun:PyRun_SimpleFileExFlags
|
1049
|
+
fun:Py_Main
|
1050
|
+
fun:main
|
1051
|
+
}
|
1052
|
+
|
1053
|
+
|
1054
|
+
{
|
1055
|
+
py3.4 Q
|
1056
|
+
Memcheck:Value8
|
1057
|
+
obj:/usr/bin/python*
|
1058
|
+
obj:/usr/bin/python*
|
1059
|
+
obj:/usr/bin/python*
|
1060
|
+
obj:/usr/bin/python*
|
1061
|
+
fun:PyEval_EvalFrameEx
|
1062
|
+
fun:PyEval_EvalFrameEx
|
1063
|
+
fun:PyEval_EvalFrameEx
|
1064
|
+
fun:PyEval_EvalFrameEx
|
1065
|
+
fun:PyEval_EvalCodeEx
|
1066
|
+
obj:/usr/bin/python*
|
1067
|
+
fun:PyObject_Call
|
1068
|
+
fun:_PyObject_CallMethodIdObjArgs
|
1069
|
+
}
|
1070
|
+
|
1071
|
+
|
1072
|
+
{
|
1073
|
+
py3.4 R
|
1074
|
+
Memcheck:Addr4
|
1075
|
+
obj:/usr/bin/python*
|
1076
|
+
obj:/usr/bin/python*
|
1077
|
+
obj:/usr/bin/python*
|
1078
|
+
obj:/usr/bin/python*
|
1079
|
+
obj:/usr/bin/python*
|
1080
|
+
obj:/usr/bin/python*
|
1081
|
+
fun:_PyObject_GC_Malloc
|
1082
|
+
fun:PyEval_EvalCodeEx
|
1083
|
+
fun:PyEval_EvalFrameEx
|
1084
|
+
fun:PyEval_EvalCodeEx
|
1085
|
+
obj:/usr/bin/python*
|
1086
|
+
obj:/usr/bin/python*
|
1087
|
+
}
|
1088
|
+
|
1089
|
+
{
|
1090
|
+
py3.4 S
|
1091
|
+
Memcheck:Addr4
|
1092
|
+
obj:/usr/bin/python*
|
1093
|
+
fun:PyFrame_ClearFreeList
|
1094
|
+
obj:/usr/bin/python*
|
1095
|
+
obj:/usr/bin/python*
|
1096
|
+
fun:PyGC_Collect
|
1097
|
+
fun:Py_Finalize
|
1098
|
+
fun:Py_Exit
|
1099
|
+
obj:/usr/bin/python*
|
1100
|
+
fun:PyErr_PrintEx
|
1101
|
+
fun:PyRun_SimpleFileExFlags
|
1102
|
+
fun:Py_Main
|
1103
|
+
fun:main
|
1104
|
+
}
|
1105
|
+
|
1106
|
+
{
|
1107
|
+
py3.4 T
|
1108
|
+
Memcheck:Cond
|
1109
|
+
obj:/usr/bin/python*
|
1110
|
+
fun:_PyModule_ClearDict
|
1111
|
+
fun:PyImport_Cleanup
|
1112
|
+
fun:Py_Finalize
|
1113
|
+
fun:Py_Exit
|
1114
|
+
obj:/usr/bin/python*
|
1115
|
+
fun:PyErr_PrintEx
|
1116
|
+
fun:PyRun_SimpleFileExFlags
|
1117
|
+
fun:Py_Main
|
1118
|
+
fun:main
|
1119
|
+
}
|
1120
|
+
|
1121
|
+
|
1122
|
+
{
|
1123
|
+
py3.4 U
|
1124
|
+
Memcheck:Addr4
|
1125
|
+
obj:/usr/bin/python*
|
1126
|
+
obj:/usr/bin/python*
|
1127
|
+
obj:/usr/bin/python*
|
1128
|
+
obj:/usr/bin/python*
|
1129
|
+
fun:PyEval_EvalFrameEx
|
1130
|
+
fun:PyEval_EvalCodeEx
|
1131
|
+
fun:PyEval_EvalFrameEx
|
1132
|
+
fun:PyEval_EvalFrameEx
|
1133
|
+
fun:PyEval_EvalCodeEx
|
1134
|
+
fun:PyEval_EvalFrameEx
|
1135
|
+
fun:PyEval_EvalCodeEx
|
1136
|
+
obj:/usr/bin/python*
|
1137
|
+
}
|
1138
|
+
|
1139
|
+
|
1140
|
+
|
1141
|
+
{
|
1142
|
+
py3.4 V
|
1143
|
+
Memcheck:Leak
|
1144
|
+
match-leak-kinds: definite
|
1145
|
+
fun:malloc
|
1146
|
+
obj:/usr/bin/python*
|
1147
|
+
fun:PyUnicode_New
|
1148
|
+
fun:PyUnicode_Substring
|
1149
|
+
obj:/usr/bin/python*
|
1150
|
+
fun:PyEval_EvalFrameEx
|
1151
|
+
fun:PyEval_EvalFrameEx
|
1152
|
+
fun:PyEval_EvalCodeEx
|
1153
|
+
obj:/usr/bin/python*
|
1154
|
+
fun:PyEval_EvalFrameEx
|
1155
|
+
fun:PyEval_EvalCodeEx
|
1156
|
+
fun:PyEval_EvalFrameEx
|
1157
|
+
}
|
1158
|
+
|
1159
|
+
{
|
1160
|
+
<insert_a_suppression_name_here>
|
1161
|
+
Memcheck:Value8
|
1162
|
+
obj:/usr/bin/python*
|
1163
|
+
obj:/usr/bin/python*
|
1164
|
+
fun:_PyModule_ClearDict
|
1165
|
+
fun:PyImport_Cleanup
|
1166
|
+
fun:Py_Finalize
|
1167
|
+
fun:Py_Exit
|
1168
|
+
obj:/usr/bin/python*
|
1169
|
+
fun:PyErr_PrintEx
|
1170
|
+
fun:PyRun_SimpleFileExFlags
|
1171
|
+
fun:Py_Main
|
1172
|
+
fun:main
|
1173
|
+
}
|
1174
|
+
|
1175
|
+
{
|
1176
|
+
<insert_a_suppression_name_here>
|
1177
|
+
Memcheck:Cond
|
1178
|
+
obj:/usr/bin/python*
|
1179
|
+
obj:/usr/bin/python*
|
1180
|
+
fun:_PyModule_ClearDict
|
1181
|
+
fun:PyImport_Cleanup
|
1182
|
+
fun:Py_Finalize
|
1183
|
+
fun:Py_Exit
|
1184
|
+
obj:/usr/bin/python*
|
1185
|
+
fun:PyErr_PrintEx
|
1186
|
+
fun:PyRun_SimpleFileExFlags
|
1187
|
+
fun:Py_Main
|
1188
|
+
fun:main
|
1189
|
+
}
|
1190
|
+
|
1191
|
+
{
|
1192
|
+
<insert_a_suppression_name_here>
|
1193
|
+
Memcheck:Cond
|
1194
|
+
obj:/usr/bin/python*
|
1195
|
+
fun:PyFrame_ClearFreeList
|
1196
|
+
obj:/usr/bin/python*
|
1197
|
+
obj:/usr/bin/python*
|
1198
|
+
fun:PyGC_Collect
|
1199
|
+
fun:Py_Finalize
|
1200
|
+
fun:Py_Exit
|
1201
|
+
obj:/usr/bin/python*
|
1202
|
+
fun:PyErr_PrintEx
|
1203
|
+
fun:PyRun_SimpleFileExFlags
|
1204
|
+
fun:Py_Main
|
1205
|
+
fun:main
|
1206
|
+
}
|
1207
|
+
|
1208
|
+
{
|
1209
|
+
<insert_a_suppression_name_here>
|
1210
|
+
Memcheck:Cond
|
1211
|
+
obj:/usr/bin/python*
|
1212
|
+
fun:PyEval_EvalCodeEx
|
1213
|
+
fun:PyEval_EvalFrameEx
|
1214
|
+
fun:PyEval_EvalCodeEx
|
1215
|
+
obj:/usr/bin/python*
|
1216
|
+
fun:PyObject_Call
|
1217
|
+
fun:PyEval_EvalFrameEx
|
1218
|
+
fun:PyEval_EvalCodeEx
|
1219
|
+
fun:PyEval_EvalFrameEx
|
1220
|
+
fun:PyEval_EvalCodeEx
|
1221
|
+
obj:/usr/bin/python*
|
1222
|
+
obj:/usr/bin/python*
|
1223
|
+
}
|
1224
|
+
|
1225
|
+
{
|
1226
|
+
<insert_a_suppression_name_here>
|
1227
|
+
Memcheck:Addr4
|
1228
|
+
obj:/usr/bin/python*
|
1229
|
+
fun:PyEval_EvalFrameEx
|
1230
|
+
fun:PyEval_EvalCodeEx
|
1231
|
+
fun:PyEval_EvalFrameEx
|
1232
|
+
fun:PyEval_EvalFrameEx
|
1233
|
+
fun:PyEval_EvalCodeEx
|
1234
|
+
obj:/usr/bin/python*
|
1235
|
+
fun:PyObject_Call
|
1236
|
+
fun:PyEval_EvalFrameEx
|
1237
|
+
fun:PyEval_EvalCodeEx
|
1238
|
+
obj:/usr/bin/python*
|
1239
|
+
obj:/usr/bin/python*
|
1240
|
+
}
|
1241
|
+
|
1242
|
+
{
|
1243
|
+
<insert_a_suppression_name_here>
|
1244
|
+
Memcheck:Cond
|
1245
|
+
obj:/usr/bin/python*
|
1246
|
+
obj:/usr/bin/python*
|
1247
|
+
obj:/usr/bin/python*
|
1248
|
+
obj:/usr/bin/python*
|
1249
|
+
fun:_PyObject_GC_Malloc
|
1250
|
+
fun:PyEval_EvalCodeEx
|
1251
|
+
fun:PyEval_EvalFrameEx
|
1252
|
+
fun:PyEval_EvalCodeEx
|
1253
|
+
obj:/usr/bin/python*
|
1254
|
+
obj:/usr/bin/python*
|
1255
|
+
obj:/usr/bin/python*
|
1256
|
+
obj:/usr/bin/python*
|
1257
|
+
}
|
1258
|
+
|
1259
|
+
{
|
1260
|
+
<insert_a_suppression_name_here>
|
1261
|
+
Memcheck:Cond
|
1262
|
+
obj:/usr/bin/python*
|
1263
|
+
obj:/usr/bin/python*
|
1264
|
+
obj:/usr/bin/python*
|
1265
|
+
obj:/usr/bin/python*
|
1266
|
+
fun:_PyModule_ClearDict
|
1267
|
+
fun:PyImport_Cleanup
|
1268
|
+
fun:Py_Finalize
|
1269
|
+
fun:Py_Exit
|
1270
|
+
obj:/usr/bin/python*
|
1271
|
+
fun:PyErr_PrintEx
|
1272
|
+
fun:PyRun_SimpleFileExFlags
|
1273
|
+
fun:Py_Main
|
1274
|
+
}
|
1275
|
+
|
1276
|
+
{
|
1277
|
+
<insert_a_suppression_name_here>
|
1278
|
+
Memcheck:Cond
|
1279
|
+
obj:/usr/bin/python*
|
1280
|
+
fun:PyEval_EvalCodeEx
|
1281
|
+
fun:PyEval_EvalFrameEx
|
1282
|
+
fun:PyEval_EvalCodeEx
|
1283
|
+
obj:/usr/bin/python*
|
1284
|
+
fun:PyObject_Call
|
1285
|
+
fun:PyEval_EvalFrameEx
|
1286
|
+
fun:PyEval_EvalCodeEx
|
1287
|
+
fun:PyEval_EvalFrameEx
|
1288
|
+
fun:PyEval_EvalCodeEx
|
1289
|
+
obj:/usr/bin/python*
|
1290
|
+
obj:/usr/bin/python*
|
1291
|
+
}
|
1292
|
+
|
1293
|
+
{
|
1294
|
+
<insert_a_suppression_name_here>
|
1295
|
+
Memcheck:Addr4
|
1296
|
+
obj:/usr/bin/python*
|
1297
|
+
fun:PyEval_EvalCodeEx
|
1298
|
+
fun:PyEval_EvalFrameEx
|
1299
|
+
fun:PyEval_EvalCodeEx
|
1300
|
+
obj:/usr/bin/python*
|
1301
|
+
fun:PyObject_Call
|
1302
|
+
fun:PyEval_EvalFrameEx
|
1303
|
+
fun:PyEval_EvalCodeEx
|
1304
|
+
fun:PyEval_EvalFrameEx
|
1305
|
+
fun:PyEval_EvalCodeEx
|
1306
|
+
obj:/usr/bin/python*
|
1307
|
+
obj:/usr/bin/python*
|
1308
|
+
}
|
1309
|
+
|
1310
|
+
{
|
1311
|
+
<insert_a_suppression_name_here>
|
1312
|
+
Memcheck:Leak
|
1313
|
+
match-leak-kinds: definite
|
1314
|
+
fun:malloc
|
1315
|
+
fun:_dl_signal_error
|
1316
|
+
fun:_dl_open
|
1317
|
+
fun:dlopen_doit
|
1318
|
+
fun:_dl_catch_error
|
1319
|
+
fun:_dlerror_run
|
1320
|
+
fun:dlopen@@GLIBC_2.2.5
|
1321
|
+
fun:mkl_serv_inspector_suppress
|
1322
|
+
fun:mkl_serv_lock
|
1323
|
+
fun:mkl_serv_core_register_cleanup
|
1324
|
+
fun:__sti__$E
|
1325
|
+
fun:call_init.part.0
|
1326
|
+
}
|
1327
|
+
|
1328
|
+
{
|
1329
|
+
py38
|
1330
|
+
Memcheck:Addr4
|
1331
|
+
fun:address_in_range
|
1332
|
+
fun:pymalloc_free.isra.0
|
1333
|
+
}
|
1334
|
+
|
1335
|
+
{
|
1336
|
+
py38.1
|
1337
|
+
Memcheck:Addr4
|
1338
|
+
fun:address_in_range
|
1339
|
+
fun:pymalloc_realloc
|
1340
|
+
}
|
1341
|
+
|
1342
|
+
{
|
1343
|
+
py38.2
|
1344
|
+
Memcheck:Cond
|
1345
|
+
fun:address_in_range
|
1346
|
+
fun:pymalloc_realloc
|
1347
|
+
fun:_PyObject_Realloc
|
1348
|
+
}
|
1349
|
+
|
1350
|
+
{
|
1351
|
+
py38.3
|
1352
|
+
Memcheck:Value8
|
1353
|
+
fun:address_in_range
|
1354
|
+
fun:pymalloc_realloc
|
1355
|
+
}
|
1356
|
+
|
1357
|
+
{
|
1358
|
+
py38.4
|
1359
|
+
Memcheck:Cond
|
1360
|
+
fun:address_in_range
|
1361
|
+
fun:pymalloc_realloc
|
1362
|
+
}
|
1363
|
+
|
1364
|
+
{
|
1365
|
+
py38.5
|
1366
|
+
Memcheck:Cond
|
1367
|
+
fun:address_in_range
|
1368
|
+
fun:pymalloc_free.isra.0
|
1369
|
+
}
|
1370
|
+
|
1371
|
+
{
|
1372
|
+
py38.6
|
1373
|
+
Memcheck:Value8
|
1374
|
+
fun:address_in_range
|
1375
|
+
fun:pymalloc_free.isra.0
|
1376
|
+
}
|
1377
|
+
|
1378
|
+
{
|
1379
|
+
<insert_a_suppression_name_here>
|
1380
|
+
Memcheck:Leak
|
1381
|
+
match-leak-kinds: definite
|
1382
|
+
fun:malloc
|
1383
|
+
fun:resize_scopes
|
1384
|
+
fun:dl_open_worker
|
1385
|
+
fun:_dl_catch_exception
|
1386
|
+
fun:_dl_open
|
1387
|
+
fun:dlopen_doit
|
1388
|
+
fun:_dl_catch_exception
|
1389
|
+
fun:_dl_catch_error
|
1390
|
+
fun:_dlerror_run
|
1391
|
+
fun:dlopen@@GLIBC_2.2.5
|
1392
|
+
fun:_PyImport_FindSharedFuncptr
|
1393
|
+
fun:_PyImport_LoadDynamicModuleWithSpec
|
1394
|
+
fun:_imp_create_dynamic_impl.isra.21
|
1395
|
+
fun:_imp_create_dynamic
|
1396
|
+
fun:cfunction_vectorcall_FASTCALL
|
1397
|
+
}
|
1398
|
+
|
1399
|
+
{
|
1400
|
+
<insert_a_suppression_name_here>
|
1401
|
+
Memcheck:Param
|
1402
|
+
sched_setaffinity(mask)
|
1403
|
+
fun:syscall
|
1404
|
+
fun:__kmp_affinity_determine_capable
|
1405
|
+
}
|
1406
|
+
|
1407
|
+
{
|
1408
|
+
<insert_a_suppression_name_here>
|
1409
|
+
Memcheck:Leak
|
1410
|
+
match-leak-kinds: definite
|
1411
|
+
fun:malloc
|
1412
|
+
fun:_PyMem_RawWcsdup
|
1413
|
+
fun:_PyCoreConfig_Copy.cold.547
|
1414
|
+
fun:_Py_InitializeCore
|
1415
|
+
}
|
1416
|
+
|