casadi 3.6.5__cp39-none-win_amd64.whl → 3.6.6__cp39-none-win_amd64.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/_casadi.pyd +0 -0
- casadi/bin/libtinyxml2.dll +0 -0
- casadi/blasfeo.lib +0 -0
- casadi/casadi-cli.exe +0 -0
- casadi/casadi.lib +0 -0
- casadi/casadi.py +663 -257
- casadi/cbc.exe +0 -0
- casadi/clp.exe +0 -0
- casadi/cmake/casadi-config-version.cmake +1 -1
- casadi/cmake/highs/highs-config.cmake +7 -14
- casadi/cmake/highs/highs-targets-release.cmake +13 -13
- casadi/cmake/highs/highs-targets.cmake +11 -9
- casadi/daqp.lib +0 -0
- casadi/fatrop.lib +0 -0
- casadi/highs.exe +0 -0
- casadi/highs.lib +0 -0
- casadi/hpipm.lib +0 -0
- casadi/include/casadi/casadi.i +3 -0
- casadi/include/casadi/casadi_c.h +2 -0
- casadi/include/casadi/config.h +8 -8
- casadi/include/casadi/core/casadi_common.hpp +1 -0
- casadi/include/casadi/core/casadi_misc.hpp +13 -0
- casadi/include/casadi/core/casadi_types.hpp +3 -2
- casadi/include/casadi/core/code_generator.hpp +30 -1
- casadi/include/casadi/core/global_options.hpp +2 -0
- casadi/include/casadi/core/mx.hpp +13 -3
- casadi/include/casadi/core/optistack.hpp +23 -0
- casadi/include/casadi/core/runtime/casadi_nlp.hpp +2 -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_runtime.hpp +4 -1
- casadi/include/casadi/core/runtime/casadi_scaled_copy.hpp +31 -0
- casadi/include/casadi/core/serializing_stream.hpp +2 -2
- casadi/include/casadi/core/sparsity.hpp +7 -0
- casadi/include/casadi/doc.i +1397 -955
- casadi/include/casadi/doc_merged.i +867 -675
- casadi/include/casadi/mem.h +1 -0
- casadi/include/daqp/api.h +46 -0
- casadi/include/daqp/auxiliary.h +29 -0
- casadi/include/daqp/bnb.h +32 -0
- casadi/include/daqp/codegen.h +18 -0
- casadi/include/daqp/constants.h +92 -0
- casadi/include/daqp/daqp.h +22 -0
- casadi/include/daqp/daqp_prox.h +18 -0
- casadi/include/daqp/factorization.h +18 -0
- casadi/include/daqp/types.h +161 -0
- casadi/include/daqp/utils.h +44 -0
- casadi/include/dlfcn.h +94 -0
- casadi/include/fatrop/auxiliary/Common.hpp +33 -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 +492 -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/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 +191 -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 +66 -0
- casadi/include/fatrop/solver/AlgStrategy.hpp +33 -0
- casadi/include/fatrop/solver/FatropAlg.hpp +108 -0
- casadi/include/fatrop/solver/FatropData.hpp +188 -0
- casadi/include/fatrop/solver/FatropOptions.hpp +94 -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 +55 -0
- casadi/include/fatrop/solver/LineSearch.hpp +86 -0
- casadi/include/fatrop/solver/NLPL1.hpp +263 -0
- casadi/include/fatrop/templates/NLPAlg.hpp +102 -0
- casadi/include/highs/HConfig.h +6 -5
- casadi/include/highs/Highs.h +93 -23
- casadi/include/highs/filereaderlp/def.hpp +19 -0
- casadi/include/highs/interfaces/highs_c_api.h +200 -24
- casadi/include/highs/io/Filereader.h +1 -1
- casadi/include/highs/io/FilereaderEms.h +1 -1
- casadi/include/highs/io/FilereaderLp.h +1 -1
- casadi/include/highs/io/FilereaderMps.h +1 -1
- casadi/include/highs/io/HMPSIO.h +1 -1
- casadi/include/highs/io/HMpsFF.h +5 -3
- casadi/include/highs/io/HighsIO.h +18 -8
- casadi/include/highs/io/LoadOptions.h +1 -1
- casadi/include/highs/ipm/IpxSolution.h +35 -0
- casadi/include/highs/ipm/IpxWrapper.h +1 -1
- 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 +20 -10
- casadi/include/highs/lp_data/HStruct.h +23 -1
- casadi/include/highs/lp_data/HighsAnalysis.h +1 -1
- casadi/include/highs/lp_data/HighsCallback.h +10 -3
- casadi/include/highs/lp_data/HighsCallbackStruct.h +31 -5
- casadi/include/highs/lp_data/HighsDebug.h +1 -1
- casadi/include/highs/lp_data/HighsInfo.h +20 -2
- casadi/include/highs/lp_data/HighsInfoDebug.h +1 -1
- casadi/include/highs/lp_data/HighsLp.h +17 -1
- casadi/include/highs/lp_data/HighsLpSolverObject.h +1 -1
- casadi/include/highs/lp_data/HighsLpUtils.h +19 -19
- casadi/include/highs/lp_data/HighsModelUtils.h +1 -1
- casadi/include/highs/lp_data/HighsOptions.h +237 -10
- casadi/include/highs/lp_data/HighsRanging.h +1 -1
- casadi/include/highs/lp_data/HighsRuntimeOptions.h +2 -2
- casadi/include/highs/lp_data/HighsSolution.h +2 -2
- casadi/include/highs/lp_data/HighsSolutionDebug.h +1 -1
- casadi/include/highs/lp_data/HighsSolve.h +3 -1
- casadi/include/highs/lp_data/HighsStatus.h +1 -1
- casadi/include/highs/mip/HighsCliqueTable.h +4 -4
- casadi/include/highs/mip/HighsConflictPool.h +1 -1
- casadi/include/highs/mip/HighsCutGeneration.h +1 -1
- casadi/include/highs/mip/HighsCutPool.h +2 -2
- casadi/include/highs/mip/HighsDebugSol.h +22 -29
- casadi/include/highs/mip/HighsDomain.h +10 -2
- casadi/include/highs/mip/HighsDomainChange.h +1 -1
- casadi/include/highs/mip/HighsDynamicRowMatrix.h +5 -3
- casadi/include/highs/mip/HighsGFkSolve.h +3 -3
- casadi/include/highs/mip/HighsImplications.h +3 -3
- casadi/include/highs/mip/HighsLpAggregator.h +1 -1
- casadi/include/highs/mip/HighsLpRelaxation.h +6 -1
- casadi/include/highs/mip/HighsMipSolver.h +4 -2
- casadi/include/highs/mip/HighsMipSolverData.h +47 -4
- casadi/include/highs/mip/HighsModkSeparator.h +2 -2
- casadi/include/highs/mip/HighsNodeQueue.h +5 -3
- casadi/include/highs/mip/HighsObjectiveFunction.h +1 -1
- casadi/include/highs/mip/HighsPathSeparator.h +2 -2
- casadi/include/highs/mip/HighsPrimalHeuristics.h +1 -1
- casadi/include/highs/mip/HighsPseudocost.h +35 -23
- casadi/include/highs/mip/HighsRedcostFixing.h +1 -1
- casadi/include/highs/mip/HighsSearch.h +2 -1
- casadi/include/highs/mip/HighsSeparation.h +1 -1
- casadi/include/highs/mip/HighsSeparator.h +1 -1
- casadi/include/highs/mip/HighsTableauSeparator.h +1 -1
- casadi/include/highs/mip/HighsTransformedLp.h +1 -1
- casadi/include/highs/model/HighsHessian.h +5 -0
- casadi/include/highs/model/HighsHessianUtils.h +2 -0
- casadi/include/highs/model/HighsModel.h +10 -1
- casadi/include/highs/parallel/HighsMutex.h +2 -1
- casadi/include/highs/parallel/HighsParallel.h +7 -2
- casadi/include/highs/parallel/HighsTask.h +1 -2
- 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 +27 -14
- casadi/include/highs/presolve/HPresolveAnalysis.h +1 -1
- casadi/include/highs/presolve/HighsPostsolveStack.h +92 -68
- casadi/include/highs/presolve/HighsSymmetry.h +6 -5
- casadi/include/highs/presolve/ICrash.h +8 -2
- casadi/include/highs/presolve/ICrashUtil.h +1 -1
- casadi/include/highs/presolve/ICrashX.h +1 -1
- casadi/include/highs/presolve/PresolveComponent.h +1 -1
- casadi/include/highs/qpsolver/a_asm.hpp +23 -12
- casadi/include/highs/qpsolver/a_quass.hpp +8 -1
- 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/pricing.hpp +15 -0
- casadi/include/highs/qpsolver/qpconst.hpp +27 -0
- casadi/include/highs/qpsolver/{vector.hpp → qpvector.hpp} +25 -25
- casadi/include/highs/qpsolver/quass.hpp +1 -1
- casadi/include/highs/qpsolver/ratiotest.hpp +19 -0
- casadi/include/highs/qpsolver/runtime.hpp +38 -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 +1 -1
- casadi/include/highs/simplex/HEkk.h +52 -18
- casadi/include/highs/simplex/HEkkDual.h +1 -1
- casadi/include/highs/simplex/HEkkDualRHS.h +6 -7
- casadi/include/highs/simplex/HEkkDualRow.h +2 -2
- casadi/include/highs/simplex/HEkkPrimal.h +6 -1
- casadi/include/highs/simplex/HSimplex.h +1 -3
- casadi/include/highs/simplex/HSimplexDebug.h +1 -1
- casadi/include/highs/simplex/HSimplexNla.h +1 -1
- casadi/include/highs/simplex/HSimplexReport.h +1 -1
- casadi/include/highs/simplex/HighsSimplexAnalysis.h +228 -100
- casadi/include/highs/simplex/SimplexConst.h +1 -1
- casadi/include/highs/simplex/SimplexStruct.h +2 -2
- casadi/include/highs/simplex/SimplexTimer.h +1 -1
- casadi/include/highs/test/DevKkt.h +1 -1
- casadi/include/highs/test/KktCh2.h +1 -1
- casadi/include/highs/util/FactorTimer.h +1 -1
- casadi/include/highs/util/HFactor.h +35 -6
- casadi/include/highs/util/HFactorConst.h +1 -1
- casadi/include/highs/util/HFactorDebug.h +1 -1
- casadi/include/highs/util/HSet.h +1 -1
- casadi/include/highs/util/HVector.h +1 -1
- casadi/include/highs/util/HVectorBase.h +1 -1
- casadi/include/highs/util/HighsCDouble.h +3 -3
- casadi/include/highs/util/HighsComponent.h +1 -1
- casadi/include/highs/util/HighsDataStack.h +4 -4
- casadi/include/highs/util/HighsDisjointSets.h +1 -1
- casadi/include/highs/util/HighsHash.h +28 -21
- casadi/include/highs/util/HighsHashTree.h +63 -63
- casadi/include/highs/util/HighsInt.h +1 -1
- casadi/include/highs/util/HighsIntegers.h +8 -9
- casadi/include/highs/util/HighsLinearSumBounds.h +1 -1
- casadi/include/highs/util/HighsMatrixPic.h +1 -1
- casadi/include/highs/util/HighsMatrixSlice.h +9 -6
- casadi/include/highs/util/HighsMatrixUtils.h +1 -1
- casadi/include/highs/util/HighsMemoryAllocation.h +55 -0
- casadi/include/highs/util/HighsRandom.h +27 -15
- casadi/include/highs/util/HighsRbTree.h +2 -2
- casadi/include/highs/util/HighsSort.h +7 -7
- casadi/include/highs/util/HighsSparseMatrix.h +5 -2
- casadi/include/highs/util/HighsSparseVectorSum.h +2 -2
- casadi/include/highs/util/HighsSplay.h +1 -1
- casadi/include/highs/util/HighsTimer.h +18 -9
- casadi/include/highs/util/HighsUtils.h +15 -8
- casadi/include/highs/util/stringutil.h +9 -4
- casadi/include/highs/zstr/strict_fstream.hpp +237 -0
- casadi/include/highs/zstr/zstr.hpp +472 -0
- casadi/include/highs_export.h +42 -0
- casadi/include/licenses/daqp-external/LICENSE +21 -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/highs-external/{LICENSE → LICENSE.txt} +1 -1
- casadi/include/osqp/constants.h +2 -3
- casadi/include/osqp/version.h +9 -0
- casadi/include/sleqp/defs.h +2 -2
- casadi/ipopt.lib +0 -0
- casadi/lapack.lib +0 -0
- casadi/lib/libtinyxml2.dll.a +0 -0
- casadi/libCbc-3.dll +0 -0
- casadi/libCbc.dll.a +0 -0
- casadi/libCbcSolver-3.dll +0 -0
- casadi/libCbcSolver.dll.a +0 -0
- casadi/libCgl-1.dll +0 -0
- casadi/libCgl.dll.a +0 -0
- casadi/libClp-1.dll +0 -0
- casadi/libClp.dll.a +0 -0
- casadi/libClpSolver-1.dll +0 -0
- casadi/libClpSolver.dll.a +0 -0
- casadi/libCoinUtils-3.dll +0 -0
- casadi/libCoinUtils.dll.a +0 -0
- casadi/libOsi-1.dll +0 -0
- casadi/libOsi.dll.a +0 -0
- casadi/libOsiCbc-3.dll +0 -0
- casadi/libOsiCbc.dll.a +0 -0
- casadi/libOsiClp-1.dll +0 -0
- casadi/libOsiClp.dll.a +0 -0
- casadi/libOsiCommonTests-1.dll +0 -0
- casadi/libOsiCommonTests.dll.a +0 -0
- casadi/libalpaqa.dll +0 -0
- casadi/libalpaqa.dll.a +0 -0
- casadi/libblasfeo.dll +0 -0
- casadi/libblasfeo.dll.a +0 -0
- casadi/libbonmin-4.dll +0 -0
- casadi/libbonmin.dll.a +0 -0
- casadi/libcasadi-tp-openblas.dll +0 -0
- casadi/libcasadi-tp-openblas.dll.a +0 -0
- casadi/libcasadi.dll +0 -0
- casadi/libcasadi.dll.a +0 -0
- casadi/libcasadi_conic_cbc.dll +0 -0
- casadi/libcasadi_conic_cbc.dll.a +0 -0
- casadi/libcasadi_conic_clp.dll +0 -0
- casadi/libcasadi_conic_clp.dll.a +0 -0
- casadi/libcasadi_conic_cplex.dll +0 -0
- casadi/libcasadi_conic_cplex.dll.a +0 -0
- casadi/libcasadi_conic_daqp.dll +0 -0
- casadi/libcasadi_conic_daqp.dll.a +0 -0
- casadi/libcasadi_conic_fatrop.dll +0 -0
- casadi/libcasadi_conic_fatrop.dll.a +0 -0
- casadi/libcasadi_conic_gurobi.dll +0 -0
- casadi/libcasadi_conic_gurobi.dll.a +0 -0
- casadi/libcasadi_conic_highs.dll +0 -0
- casadi/libcasadi_conic_highs.dll.a +0 -0
- casadi/libcasadi_conic_hpipm.dll +0 -0
- casadi/libcasadi_conic_hpipm.dll.a +0 -0
- casadi/libcasadi_conic_ipqp.dll +0 -0
- casadi/libcasadi_conic_ipqp.dll.a +0 -0
- casadi/libcasadi_conic_nlpsol.dll +0 -0
- casadi/libcasadi_conic_nlpsol.dll.a +0 -0
- casadi/libcasadi_conic_osqp.dll +0 -0
- casadi/libcasadi_conic_osqp.dll.a +0 -0
- casadi/libcasadi_conic_proxqp.dll +0 -0
- casadi/libcasadi_conic_proxqp.dll.a +0 -0
- casadi/libcasadi_conic_qpoases.dll +0 -0
- casadi/libcasadi_conic_qpoases.dll.a +0 -0
- casadi/libcasadi_conic_qrqp.dll +0 -0
- casadi/libcasadi_conic_qrqp.dll.a +0 -0
- casadi/libcasadi_conic_superscs.dll +0 -0
- casadi/libcasadi_conic_superscs.dll.a +0 -0
- casadi/libcasadi_importer_shell.dll +0 -0
- casadi/libcasadi_importer_shell.dll.a +0 -0
- casadi/libcasadi_integrator_collocation.dll +0 -0
- casadi/libcasadi_integrator_collocation.dll.a +0 -0
- casadi/libcasadi_integrator_cvodes.dll +0 -0
- casadi/libcasadi_integrator_cvodes.dll.a +0 -0
- casadi/libcasadi_integrator_idas.dll +0 -0
- casadi/libcasadi_integrator_idas.dll.a +0 -0
- casadi/libcasadi_integrator_rk.dll +0 -0
- casadi/libcasadi_integrator_rk.dll.a +0 -0
- casadi/libcasadi_interpolant_bspline.dll +0 -0
- casadi/libcasadi_interpolant_bspline.dll.a +0 -0
- casadi/libcasadi_interpolant_linear.dll +0 -0
- casadi/libcasadi_interpolant_linear.dll.a +0 -0
- casadi/libcasadi_linsol_csparse.dll +0 -0
- casadi/libcasadi_linsol_csparse.dll.a +0 -0
- casadi/libcasadi_linsol_csparsecholesky.dll +0 -0
- casadi/libcasadi_linsol_csparsecholesky.dll.a +0 -0
- casadi/libcasadi_linsol_lapacklu.dll +0 -0
- casadi/libcasadi_linsol_lapacklu.dll.a +0 -0
- casadi/libcasadi_linsol_lapackqr.dll +0 -0
- casadi/libcasadi_linsol_lapackqr.dll.a +0 -0
- casadi/libcasadi_linsol_ldl.dll +0 -0
- casadi/libcasadi_linsol_ldl.dll.a +0 -0
- casadi/libcasadi_linsol_lsqr.dll +0 -0
- casadi/libcasadi_linsol_lsqr.dll.a +0 -0
- casadi/libcasadi_linsol_ma27.dll +0 -0
- casadi/libcasadi_linsol_ma27.dll.a +0 -0
- casadi/libcasadi_linsol_mumps.dll +0 -0
- casadi/libcasadi_linsol_mumps.dll.a +0 -0
- casadi/libcasadi_linsol_qr.dll +0 -0
- casadi/libcasadi_linsol_qr.dll.a +0 -0
- casadi/libcasadi_linsol_symbolicqr.dll +0 -0
- casadi/libcasadi_linsol_symbolicqr.dll.a +0 -0
- casadi/libcasadi_linsol_tridiag.dll +0 -0
- casadi/libcasadi_linsol_tridiag.dll.a +0 -0
- casadi/libcasadi_nlpsol_alpaqa.dll +0 -0
- casadi/libcasadi_nlpsol_alpaqa.dll.a +0 -0
- casadi/libcasadi_nlpsol_ampl.dll +0 -0
- casadi/libcasadi_nlpsol_ampl.dll.a +0 -0
- casadi/libcasadi_nlpsol_blocksqp.dll +0 -0
- casadi/libcasadi_nlpsol_blocksqp.dll.a +0 -0
- casadi/libcasadi_nlpsol_bonmin.dll +0 -0
- casadi/libcasadi_nlpsol_bonmin.dll.a +0 -0
- casadi/libcasadi_nlpsol_fatrop.dll +0 -0
- casadi/libcasadi_nlpsol_fatrop.dll.a +0 -0
- casadi/libcasadi_nlpsol_feasiblesqpmethod.dll +0 -0
- casadi/libcasadi_nlpsol_feasiblesqpmethod.dll.a +0 -0
- casadi/libcasadi_nlpsol_ipopt.dll +0 -0
- casadi/libcasadi_nlpsol_ipopt.dll.a +0 -0
- casadi/libcasadi_nlpsol_knitro.dll +0 -0
- casadi/libcasadi_nlpsol_knitro.dll.a +0 -0
- casadi/libcasadi_nlpsol_madnlp.dll +0 -0
- casadi/libcasadi_nlpsol_madnlp.dll.a +0 -0
- casadi/libcasadi_nlpsol_qrsqp.dll +0 -0
- casadi/libcasadi_nlpsol_qrsqp.dll.a +0 -0
- casadi/libcasadi_nlpsol_scpgen.dll +0 -0
- casadi/libcasadi_nlpsol_scpgen.dll.a +0 -0
- casadi/libcasadi_nlpsol_sleqp.dll +0 -0
- casadi/libcasadi_nlpsol_sleqp.dll.a +0 -0
- casadi/libcasadi_nlpsol_snopt.dll +0 -0
- casadi/libcasadi_nlpsol_snopt.dll.a +0 -0
- casadi/libcasadi_nlpsol_sqpmethod.dll +0 -0
- casadi/libcasadi_nlpsol_sqpmethod.dll.a +0 -0
- casadi/libcasadi_nlpsol_worhp.dll +0 -0
- casadi/libcasadi_nlpsol_worhp.dll.a +0 -0
- casadi/libcasadi_rootfinder_fast_newton.dll +0 -0
- casadi/libcasadi_rootfinder_fast_newton.dll.a +0 -0
- casadi/libcasadi_rootfinder_kinsol.dll +0 -0
- casadi/libcasadi_rootfinder_kinsol.dll.a +0 -0
- casadi/libcasadi_rootfinder_newton.dll +0 -0
- casadi/libcasadi_rootfinder_newton.dll.a +0 -0
- casadi/libcasadi_rootfinder_nlpsol.dll +0 -0
- casadi/libcasadi_rootfinder_nlpsol.dll.a +0 -0
- casadi/libcasadi_sundials_common.dll +0 -0
- casadi/libcasadi_sundials_common.dll.a +0 -0
- casadi/libcasadi_xmlfile_tinyxml.dll +0 -0
- casadi/libcasadi_xmlfile_tinyxml.dll.a +0 -0
- casadi/libcoinmetis-2.dll +0 -0
- casadi/libcoinmetis.dll.a +0 -0
- casadi/libcoinmumps-3.dll +0 -0
- casadi/libcoinmumps.dll.a +0 -0
- casadi/libcplex_adaptor.dll +0 -0
- casadi/libdaqp.dll +0 -0
- casadi/libdaqp.dll.a +0 -0
- casadi/libdaqpstat.a +0 -0
- casadi/{libFortranHighs.dll → libdl.dll} +0 -0
- casadi/libdl.dll.a +0 -0
- casadi/libfatrop.dll +0 -0
- casadi/libfatrop.dll.a +0 -0
- casadi/libgurobi_adaptor.dll +0 -0
- casadi/libhighs.dll +0 -0
- casadi/libhighs.dll.a +0 -0
- casadi/libhpipm.dll +0 -0
- casadi/libhpipm.dll.a +0 -0
- casadi/libipopt-3.dll +0 -0
- casadi/libipopt.dll.a +0 -0
- casadi/libmatlab_ipc.dll +0 -0
- casadi/libmatlab_ipc.dll.a +0 -0
- casadi/libosqp.a +0 -0
- casadi/libosqp.dll +0 -0
- casadi/libosqp.dll.a +0 -0
- casadi/libqdldl.dll +0 -0
- casadi/libqdldl.dll.a +0 -0
- casadi/libsipopt-3.dll +0 -0
- casadi/libsipopt.dll.a +0 -0
- casadi/libsleqp.dll +0 -0
- casadi/libsleqp.dll.a +0 -0
- casadi/libtinyxml2.dll +0 -0
- casadi/libtrlib.dll +0 -0
- casadi/libtrlib.dll.a +0 -0
- casadi/matlab_ipc.lib +0 -0
- casadi/osqp.lib +0 -0
- casadi/pkgconfig/casadi.pc +1 -1
- casadi/pkgconfig/highs.pc +1 -1
- casadi/sleqp.lib +0 -0
- casadi/spral_ssids.exe +0 -0
- casadi/tools/__init__.py +4 -0
- casadi/tools/bounds.py +3 -3
- {casadi-3.6.5.dist-info → casadi-3.6.6.dist-info}/METADATA +2 -2
- {casadi-3.6.5.dist-info → casadi-3.6.6.dist-info}/RECORD +500 -324
- casadi/include/highs/fortran/highs_fortran_api.mod +0 -0
- casadi/libFortranHighs.dll.a +0 -0
- {casadi-3.6.5.dist-info → casadi-3.6.6.dist-info}/WHEEL +0 -0
casadi/casadi.py
CHANGED
@@ -111,6 +111,7 @@ SOLVER_RET_UNKNOWN = _casadi.SOLVER_RET_UNKNOWN
|
|
111
111
|
SOLVER_RET_LIMITED = _casadi.SOLVER_RET_LIMITED
|
112
112
|
SOLVER_RET_NAN = _casadi.SOLVER_RET_NAN
|
113
113
|
SOLVER_RET_INFEASIBLE = _casadi.SOLVER_RET_INFEASIBLE
|
114
|
+
SOLVER_RET_EXCEPTION = _casadi.SOLVER_RET_EXCEPTION
|
114
115
|
|
115
116
|
|
116
117
|
import contextlib
|
@@ -14624,12 +14625,14 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
|
|
14624
14625
|
return _casadi.MX_primitives(self, *args)
|
14625
14626
|
|
14626
14627
|
|
14627
|
-
def split_primitives(self, *args) -> "std::vector< casadi::
|
14628
|
+
def split_primitives(self, *args) -> "std::vector< casadi::DM,std::allocator< casadi::DM > >":
|
14628
14629
|
"""
|
14629
14630
|
[INTERNAL]
|
14630
14631
|
|
14631
14632
|
::
|
14632
14633
|
|
14634
|
+
split_primitives(self, DM x) -> [DM]
|
14635
|
+
split_primitives(self, SX x) -> [SX]
|
14633
14636
|
split_primitives(self, MX x) -> [MX]
|
14634
14637
|
|
14635
14638
|
Split up an expression along symbolic primitives.
|
@@ -14637,24 +14640,98 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
|
|
14637
14640
|
Extra doc: https://github.com/casadi/casadi/wiki/L_qq
|
14638
14641
|
|
14639
14642
|
Doc source:
|
14640
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
14643
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L315
|
14644
|
+
|
14645
|
+
Implementation:
|
14646
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L929-L935
|
14647
|
+
|
14648
|
+
|
14649
|
+
|
14650
|
+
.......
|
14651
|
+
|
14652
|
+
::
|
14653
|
+
|
14654
|
+
split_primitives(self, DM x)
|
14655
|
+
|
14656
|
+
|
14657
|
+
|
14658
|
+
[INTERNAL]
|
14659
|
+
Split up an expression along symbolic primitives.
|
14660
|
+
|
14661
|
+
Extra doc: https://github.com/casadi/casadi/wiki/L_qq
|
14662
|
+
|
14663
|
+
Doc source:
|
14664
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L315
|
14665
|
+
|
14666
|
+
Implementation:
|
14667
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L929-L935
|
14668
|
+
|
14669
|
+
|
14670
|
+
|
14671
|
+
.............
|
14672
|
+
|
14673
|
+
|
14674
|
+
.......
|
14675
|
+
|
14676
|
+
::
|
14677
|
+
|
14678
|
+
split_primitives(self, SX x)
|
14679
|
+
|
14680
|
+
|
14681
|
+
|
14682
|
+
[INTERNAL]
|
14683
|
+
Split up an expression along symbolic primitives.
|
14684
|
+
|
14685
|
+
Extra doc: https://github.com/casadi/casadi/wiki/L_qq
|
14686
|
+
|
14687
|
+
Doc source:
|
14688
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L314
|
14689
|
+
|
14690
|
+
Implementation:
|
14691
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L921-L927
|
14692
|
+
|
14693
|
+
|
14694
|
+
|
14695
|
+
.............
|
14696
|
+
|
14697
|
+
|
14698
|
+
.......
|
14699
|
+
|
14700
|
+
::
|
14701
|
+
|
14702
|
+
split_primitives(self, MX x)
|
14703
|
+
|
14704
|
+
|
14705
|
+
|
14706
|
+
[INTERNAL]
|
14707
|
+
Split up an expression along symbolic primitives.
|
14708
|
+
|
14709
|
+
Extra doc: https://github.com/casadi/casadi/wiki/L_qq
|
14710
|
+
|
14711
|
+
Doc source:
|
14712
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L313
|
14641
14713
|
|
14642
14714
|
Implementation:
|
14643
14715
|
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L913-L919
|
14644
14716
|
|
14645
14717
|
|
14646
14718
|
|
14719
|
+
.............
|
14720
|
+
|
14721
|
+
|
14647
14722
|
|
14648
14723
|
"""
|
14649
14724
|
return _casadi.MX_split_primitives(self, *args)
|
14650
14725
|
|
14651
14726
|
|
14652
|
-
def join_primitives(self, *args) -> "casadi::
|
14727
|
+
def join_primitives(self, *args) -> "casadi::DM":
|
14653
14728
|
"""
|
14654
14729
|
[INTERNAL]
|
14655
14730
|
|
14656
14731
|
::
|
14657
14732
|
|
14733
|
+
join_primitives(self, [DM] v) -> DM
|
14734
|
+
join_primitives(self, [SX] v) -> SX
|
14658
14735
|
join_primitives(self, [MX] v) -> MX
|
14659
14736
|
|
14660
14737
|
Join an expression along symbolic primitives.
|
@@ -14662,11 +14739,83 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
|
|
14662
14739
|
Extra doc: https://github.com/casadi/casadi/wiki/L_qr
|
14663
14740
|
|
14664
14741
|
Doc source:
|
14665
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
14742
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L324
|
14666
14743
|
|
14667
14744
|
Implementation:
|
14668
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#
|
14745
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L953-L959
|
14746
|
+
|
14747
|
+
|
14669
14748
|
|
14749
|
+
.......
|
14750
|
+
|
14751
|
+
::
|
14752
|
+
|
14753
|
+
join_primitives(self, [DM] v)
|
14754
|
+
|
14755
|
+
|
14756
|
+
|
14757
|
+
[INTERNAL]
|
14758
|
+
Join an expression along symbolic primitives.
|
14759
|
+
|
14760
|
+
Extra doc: https://github.com/casadi/casadi/wiki/L_qr
|
14761
|
+
|
14762
|
+
Doc source:
|
14763
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L324
|
14764
|
+
|
14765
|
+
Implementation:
|
14766
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L953-L959
|
14767
|
+
|
14768
|
+
|
14769
|
+
|
14770
|
+
.............
|
14771
|
+
|
14772
|
+
|
14773
|
+
.......
|
14774
|
+
|
14775
|
+
::
|
14776
|
+
|
14777
|
+
join_primitives(self, [SX] v)
|
14778
|
+
|
14779
|
+
|
14780
|
+
|
14781
|
+
[INTERNAL]
|
14782
|
+
Join an expression along symbolic primitives.
|
14783
|
+
|
14784
|
+
Extra doc: https://github.com/casadi/casadi/wiki/L_qr
|
14785
|
+
|
14786
|
+
Doc source:
|
14787
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L323
|
14788
|
+
|
14789
|
+
Implementation:
|
14790
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L945-L951
|
14791
|
+
|
14792
|
+
|
14793
|
+
|
14794
|
+
.............
|
14795
|
+
|
14796
|
+
|
14797
|
+
.......
|
14798
|
+
|
14799
|
+
::
|
14800
|
+
|
14801
|
+
join_primitives(self, [MX] v)
|
14802
|
+
|
14803
|
+
|
14804
|
+
|
14805
|
+
[INTERNAL]
|
14806
|
+
Join an expression along symbolic primitives.
|
14807
|
+
|
14808
|
+
Extra doc: https://github.com/casadi/casadi/wiki/L_qr
|
14809
|
+
|
14810
|
+
Doc source:
|
14811
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L322
|
14812
|
+
|
14813
|
+
Implementation:
|
14814
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L937-L943
|
14815
|
+
|
14816
|
+
|
14817
|
+
|
14818
|
+
.............
|
14670
14819
|
|
14671
14820
|
|
14672
14821
|
|
@@ -14715,10 +14864,10 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
|
|
14715
14864
|
Extra doc: https://github.com/casadi/casadi/wiki/L_qu
|
14716
14865
|
|
14717
14866
|
Doc source:
|
14718
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
14867
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L347
|
14719
14868
|
|
14720
14869
|
Implementation:
|
14721
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#
|
14870
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L969-L971
|
14722
14871
|
|
14723
14872
|
|
14724
14873
|
|
@@ -14740,10 +14889,10 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
|
|
14740
14889
|
Extra doc: https://github.com/casadi/casadi/wiki/L_qv
|
14741
14890
|
|
14742
14891
|
Doc source:
|
14743
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
14892
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L352
|
14744
14893
|
|
14745
14894
|
Implementation:
|
14746
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#
|
14895
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L973-L979
|
14747
14896
|
|
14748
14897
|
|
14749
14898
|
|
@@ -14765,10 +14914,10 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
|
|
14765
14914
|
Extra doc: https://github.com/casadi/casadi/wiki/L_qw
|
14766
14915
|
|
14767
14916
|
Doc source:
|
14768
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
14917
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L357
|
14769
14918
|
|
14770
14919
|
Implementation:
|
14771
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#
|
14920
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L981-L983
|
14772
14921
|
|
14773
14922
|
|
14774
14923
|
|
@@ -14790,10 +14939,10 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
|
|
14790
14939
|
Extra doc: https://github.com/casadi/casadi/wiki/L_qx
|
14791
14940
|
|
14792
14941
|
Doc source:
|
14793
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
14942
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L362
|
14794
14943
|
|
14795
14944
|
Implementation:
|
14796
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#
|
14945
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L985-L987
|
14797
14946
|
|
14798
14947
|
|
14799
14948
|
|
@@ -14815,10 +14964,10 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
|
|
14815
14964
|
Extra doc: https://github.com/casadi/casadi/wiki/L_qy
|
14816
14965
|
|
14817
14966
|
Doc source:
|
14818
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
14967
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L367
|
14819
14968
|
|
14820
14969
|
Implementation:
|
14821
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#
|
14970
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L989-L991
|
14822
14971
|
|
14823
14972
|
|
14824
14973
|
|
@@ -14838,10 +14987,10 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
|
|
14838
14987
|
Checks if expression does not contain NaN or Inf.
|
14839
14988
|
|
14840
14989
|
Doc source:
|
14841
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
14990
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L370
|
14842
14991
|
|
14843
14992
|
Implementation:
|
14844
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#
|
14993
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L993-L999
|
14845
14994
|
|
14846
14995
|
|
14847
14996
|
|
@@ -14861,7 +15010,7 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
|
|
14861
15010
|
Is binary operation.
|
14862
15011
|
|
14863
15012
|
Doc source:
|
14864
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
15013
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L373
|
14865
15014
|
|
14866
15015
|
Implementation:
|
14867
15016
|
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L786-L788
|
@@ -14884,7 +15033,7 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
|
|
14884
15033
|
Is unary operation.
|
14885
15034
|
|
14886
15035
|
Doc source:
|
14887
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
15036
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L376
|
14888
15037
|
|
14889
15038
|
Implementation:
|
14890
15039
|
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L790-L792
|
@@ -14907,7 +15056,7 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
|
|
14907
15056
|
Get operation type.
|
14908
15057
|
|
14909
15058
|
Doc source:
|
14910
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
15059
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L379
|
14911
15060
|
|
14912
15061
|
Implementation:
|
14913
15062
|
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L794-L796
|
@@ -14930,7 +15079,7 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
|
|
14930
15079
|
Obtain information about node
|
14931
15080
|
|
14932
15081
|
Doc source:
|
14933
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
15082
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L382
|
14934
15083
|
|
14935
15084
|
Implementation:
|
14936
15085
|
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L798-L800
|
@@ -14955,7 +15104,7 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
|
|
14955
15104
|
Extra doc: https://github.com/casadi/casadi/wiki/L_qz
|
14956
15105
|
|
14957
15106
|
Doc source:
|
14958
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
15107
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L387
|
14959
15108
|
|
14960
15109
|
Implementation:
|
14961
15110
|
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L802-L804
|
@@ -15023,7 +15172,7 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
|
|
15023
15172
|
Extra doc: https://github.com/casadi/casadi/wiki/L_r1
|
15024
15173
|
|
15025
15174
|
Doc source:
|
15026
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
15175
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L406
|
15027
15176
|
|
15028
15177
|
Implementation:
|
15029
15178
|
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L507-L532
|
@@ -15049,7 +15198,7 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
|
|
15049
15198
|
Extra doc: https://github.com/casadi/casadi/wiki/L_r1
|
15050
15199
|
|
15051
15200
|
Doc source:
|
15052
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
15201
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L407
|
15053
15202
|
|
15054
15203
|
Implementation:
|
15055
15204
|
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L534-L536
|
@@ -15077,7 +15226,7 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
|
|
15077
15226
|
Extra doc: https://github.com/casadi/casadi/wiki/L_r2
|
15078
15227
|
|
15079
15228
|
Doc source:
|
15080
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
15229
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L416
|
15081
15230
|
|
15082
15231
|
Implementation:
|
15083
15232
|
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L554-L556
|
@@ -15098,7 +15247,7 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
|
|
15098
15247
|
Extra doc: https://github.com/casadi/casadi/wiki/L_r2
|
15099
15248
|
|
15100
15249
|
Doc source:
|
15101
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
15250
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L415
|
15102
15251
|
|
15103
15252
|
Implementation:
|
15104
15253
|
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L550-L552
|
@@ -15122,7 +15271,7 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
|
|
15122
15271
|
Extra doc: https://github.com/casadi/casadi/wiki/L_r2
|
15123
15272
|
|
15124
15273
|
Doc source:
|
15125
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
15274
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L416
|
15126
15275
|
|
15127
15276
|
Implementation:
|
15128
15277
|
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L554-L556
|
@@ -15146,7 +15295,7 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
|
|
15146
15295
|
Extra doc: https://github.com/casadi/casadi/wiki/L_r2
|
15147
15296
|
|
15148
15297
|
Doc source:
|
15149
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
15298
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L414
|
15150
15299
|
|
15151
15300
|
Implementation:
|
15152
15301
|
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L558-L560
|
@@ -15177,7 +15326,7 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
|
|
15177
15326
|
Extra doc: https://github.com/casadi/casadi/wiki/L_r3
|
15178
15327
|
|
15179
15328
|
Doc source:
|
15180
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
15329
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L425
|
15181
15330
|
|
15182
15331
|
Implementation:
|
15183
15332
|
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L566-L568
|
@@ -15198,7 +15347,7 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
|
|
15198
15347
|
Extra doc: https://github.com/casadi/casadi/wiki/L_r3
|
15199
15348
|
|
15200
15349
|
Doc source:
|
15201
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
15350
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L424
|
15202
15351
|
|
15203
15352
|
Implementation:
|
15204
15353
|
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L562-L564
|
@@ -15222,7 +15371,7 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
|
|
15222
15371
|
Extra doc: https://github.com/casadi/casadi/wiki/L_r3
|
15223
15372
|
|
15224
15373
|
Doc source:
|
15225
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
15374
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L425
|
15226
15375
|
|
15227
15376
|
Implementation:
|
15228
15377
|
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L566-L568
|
@@ -15246,7 +15395,7 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
|
|
15246
15395
|
Extra doc: https://github.com/casadi/casadi/wiki/L_r3
|
15247
15396
|
|
15248
15397
|
Doc source:
|
15249
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
15398
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L423
|
15250
15399
|
|
15251
15400
|
Implementation:
|
15252
15401
|
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L570-L572
|
@@ -15302,7 +15451,7 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
|
|
15302
15451
|
Get a submatrix, two arguments
|
15303
15452
|
|
15304
15453
|
Doc source:
|
15305
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
15454
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L468
|
15306
15455
|
|
15307
15456
|
Implementation:
|
15308
15457
|
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L218-L221
|
@@ -15335,10 +15484,10 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
|
|
15335
15484
|
Get a submatrix, single argument
|
15336
15485
|
|
15337
15486
|
Doc source:
|
15338
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
15487
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L444
|
15339
15488
|
|
15340
15489
|
Implementation:
|
15341
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
15490
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L444-L446
|
15342
15491
|
|
15343
15492
|
|
15344
15493
|
|
@@ -15357,7 +15506,7 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
|
|
15357
15506
|
Get a submatrix, single argument
|
15358
15507
|
|
15359
15508
|
Doc source:
|
15360
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
15509
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L442
|
15361
15510
|
|
15362
15511
|
Implementation:
|
15363
15512
|
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L194-L200
|
@@ -15379,7 +15528,7 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
|
|
15379
15528
|
Get a submatrix, single argument
|
15380
15529
|
|
15381
15530
|
Doc source:
|
15382
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
15531
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L440
|
15383
15532
|
|
15384
15533
|
Implementation:
|
15385
15534
|
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L171-L174
|
@@ -15401,7 +15550,7 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
|
|
15401
15550
|
Get a submatrix, single argument
|
15402
15551
|
|
15403
15552
|
Doc source:
|
15404
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
15553
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L443
|
15405
15554
|
|
15406
15555
|
Implementation:
|
15407
15556
|
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L202-L206
|
@@ -15423,10 +15572,10 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
|
|
15423
15572
|
Get a submatrix, two arguments
|
15424
15573
|
|
15425
15574
|
Doc source:
|
15426
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
15575
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L462
|
15427
15576
|
|
15428
15577
|
Implementation:
|
15429
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
15578
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L462-L465
|
15430
15579
|
|
15431
15580
|
|
15432
15581
|
|
@@ -15445,10 +15594,10 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
|
|
15445
15594
|
Get a submatrix, two arguments
|
15446
15595
|
|
15447
15596
|
Doc source:
|
15448
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
15597
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L457
|
15449
15598
|
|
15450
15599
|
Implementation:
|
15451
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
15600
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L457-L459
|
15452
15601
|
|
15453
15602
|
|
15454
15603
|
|
@@ -15467,10 +15616,10 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
|
|
15467
15616
|
Get a submatrix, two arguments
|
15468
15617
|
|
15469
15618
|
Doc source:
|
15470
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
15619
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L453
|
15471
15620
|
|
15472
15621
|
Implementation:
|
15473
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
15622
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L453-L455
|
15474
15623
|
|
15475
15624
|
|
15476
15625
|
|
@@ -15489,7 +15638,7 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
|
|
15489
15638
|
Get a submatrix, two arguments
|
15490
15639
|
|
15491
15640
|
Doc source:
|
15492
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
15641
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L451
|
15493
15642
|
|
15494
15643
|
Implementation:
|
15495
15644
|
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L141-L144
|
@@ -15511,7 +15660,7 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
|
|
15511
15660
|
Get a submatrix, two arguments
|
15512
15661
|
|
15513
15662
|
Doc source:
|
15514
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
15663
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L467
|
15515
15664
|
|
15516
15665
|
Implementation:
|
15517
15666
|
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L208-L211
|
@@ -15533,7 +15682,7 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
|
|
15533
15682
|
Get a submatrix, two arguments
|
15534
15683
|
|
15535
15684
|
Doc source:
|
15536
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
15685
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L466
|
15537
15686
|
|
15538
15687
|
Implementation:
|
15539
15688
|
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L213-L216
|
@@ -15555,7 +15704,7 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
|
|
15555
15704
|
Get a submatrix, two arguments
|
15556
15705
|
|
15557
15706
|
Doc source:
|
15558
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
15707
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L468
|
15559
15708
|
|
15560
15709
|
Implementation:
|
15561
15710
|
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L218-L221
|
@@ -15611,7 +15760,7 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
|
|
15611
15760
|
Set a submatrix, single argument
|
15612
15761
|
|
15613
15762
|
Doc source:
|
15614
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
15763
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L475
|
15615
15764
|
|
15616
15765
|
Implementation:
|
15617
15766
|
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L371-L382
|
@@ -15633,7 +15782,7 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
|
|
15633
15782
|
Set a submatrix, single argument
|
15634
15783
|
|
15635
15784
|
Doc source:
|
15636
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
15785
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L473
|
15637
15786
|
|
15638
15787
|
Implementation:
|
15639
15788
|
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L298-L301
|
@@ -15655,7 +15804,7 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
|
|
15655
15804
|
Set a submatrix, two arguments
|
15656
15805
|
|
15657
15806
|
Doc source:
|
15658
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
15807
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L480
|
15659
15808
|
|
15660
15809
|
Implementation:
|
15661
15810
|
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L223-L226
|
@@ -15687,7 +15836,7 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
|
|
15687
15836
|
Get a set of nonzeros
|
15688
15837
|
|
15689
15838
|
Doc source:
|
15690
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
15839
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L496
|
15691
15840
|
|
15692
15841
|
Implementation:
|
15693
15842
|
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L427-L430
|
@@ -15717,10 +15866,10 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
|
|
15717
15866
|
Get a set of nonzeros
|
15718
15867
|
|
15719
15868
|
Doc source:
|
15720
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
15869
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L491
|
15721
15870
|
|
15722
15871
|
Implementation:
|
15723
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
15872
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L491-L493
|
15724
15873
|
|
15725
15874
|
|
15726
15875
|
|
@@ -15739,7 +15888,7 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
|
|
15739
15888
|
Get a set of nonzeros
|
15740
15889
|
|
15741
15890
|
Doc source:
|
15742
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
15891
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L488
|
15743
15892
|
|
15744
15893
|
Implementation:
|
15745
15894
|
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L384-L387
|
@@ -15761,7 +15910,7 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
|
|
15761
15910
|
Get a set of nonzeros
|
15762
15911
|
|
15763
15912
|
Doc source:
|
15764
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
15913
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L490
|
15765
15914
|
|
15766
15915
|
Implementation:
|
15767
15916
|
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L422-L425
|
@@ -15783,7 +15932,7 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
|
|
15783
15932
|
Get a set of nonzeros
|
15784
15933
|
|
15785
15934
|
Doc source:
|
15786
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
15935
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L495
|
15787
15936
|
|
15788
15937
|
Implementation:
|
15789
15938
|
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L432-L435
|
@@ -15805,7 +15954,7 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
|
|
15805
15954
|
Get a set of nonzeros
|
15806
15955
|
|
15807
15956
|
Doc source:
|
15808
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
15957
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L494
|
15809
15958
|
|
15810
15959
|
Implementation:
|
15811
15960
|
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L437-L440
|
@@ -15827,7 +15976,7 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
|
|
15827
15976
|
Get a set of nonzeros
|
15828
15977
|
|
15829
15978
|
Doc source:
|
15830
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
15979
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L496
|
15831
15980
|
|
15832
15981
|
Implementation:
|
15833
15982
|
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L427-L430
|
@@ -15856,10 +16005,10 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
|
|
15856
16005
|
Set a set of nonzeros
|
15857
16006
|
|
15858
16007
|
Doc source:
|
15859
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
16008
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L504
|
15860
16009
|
|
15861
16010
|
Implementation:
|
15862
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
16011
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L504-L504
|
15863
16012
|
|
15864
16013
|
|
15865
16014
|
|
@@ -15886,10 +16035,10 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
|
|
15886
16035
|
Set a set of nonzeros
|
15887
16036
|
|
15888
16037
|
Doc source:
|
15889
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
16038
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L504
|
15890
16039
|
|
15891
16040
|
Implementation:
|
15892
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
16041
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L504-L504
|
15893
16042
|
|
15894
16043
|
|
15895
16044
|
|
@@ -15908,7 +16057,7 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
|
|
15908
16057
|
Set a set of nonzeros
|
15909
16058
|
|
15910
16059
|
Doc source:
|
15911
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
16060
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L501
|
15912
16061
|
|
15913
16062
|
Implementation:
|
15914
16063
|
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L442-L445
|
@@ -15930,7 +16079,7 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
|
|
15930
16079
|
Set a set of nonzeros
|
15931
16080
|
|
15932
16081
|
Doc source:
|
15933
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
16082
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L503
|
15934
16083
|
|
15935
16084
|
Implementation:
|
15936
16085
|
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L503-L505
|
@@ -15970,7 +16119,7 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
|
|
15970
16119
|
Extra doc: https://github.com/casadi/casadi/wiki/L_r5
|
15971
16120
|
|
15972
16121
|
Doc source:
|
15973
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
16122
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L528
|
15974
16123
|
|
15975
16124
|
Implementation:
|
15976
16125
|
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L646-L652
|
@@ -16002,7 +16151,7 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
|
|
16002
16151
|
Extra doc: https://github.com/casadi/casadi/wiki/L_r5
|
16003
16152
|
|
16004
16153
|
Doc source:
|
16005
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
16154
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L528
|
16006
16155
|
|
16007
16156
|
Implementation:
|
16008
16157
|
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L646-L652
|
@@ -16037,7 +16186,7 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
|
|
16037
16186
|
Extra doc: https://github.com/casadi/casadi/wiki/L_r5
|
16038
16187
|
|
16039
16188
|
Doc source:
|
16040
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
16189
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L522
|
16041
16190
|
|
16042
16191
|
Implementation:
|
16043
16192
|
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L638-L644
|
@@ -16112,7 +16261,7 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
|
|
16112
16261
|
Extra doc: https://github.com/casadi/casadi/wiki/L_rg
|
16113
16262
|
|
16114
16263
|
Doc source:
|
16115
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
16264
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L861
|
16116
16265
|
|
16117
16266
|
Implementation:
|
16118
16267
|
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L699-L704
|
@@ -16141,7 +16290,7 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
|
|
16141
16290
|
Extra doc: https://github.com/casadi/casadi/wiki/L_rh
|
16142
16291
|
|
16143
16292
|
Doc source:
|
16144
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
16293
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L868
|
16145
16294
|
|
16146
16295
|
Implementation:
|
16147
16296
|
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L706-L708
|
@@ -16166,7 +16315,7 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
|
|
16166
16315
|
Extra doc: https://github.com/casadi/casadi/wiki/L_ri
|
16167
16316
|
|
16168
16317
|
Doc source:
|
16169
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
16318
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L876
|
16170
16319
|
|
16171
16320
|
Implementation:
|
16172
16321
|
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L829-L831
|
@@ -16266,10 +16415,10 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
|
|
16266
16415
|
Extra doc: https://github.com/casadi/casadi/wiki/L_rn
|
16267
16416
|
|
16268
16417
|
Doc source:
|
16269
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
16418
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L907
|
16270
16419
|
|
16271
16420
|
Implementation:
|
16272
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#
|
16421
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L2320-L2326
|
16273
16422
|
|
16274
16423
|
|
16275
16424
|
|
@@ -16624,7 +16773,7 @@ def MX_binary(*args) -> "casadi::MX":
|
|
16624
16773
|
Extra doc: https://github.com/casadi/casadi/wiki/L_r1
|
16625
16774
|
|
16626
16775
|
Doc source:
|
16627
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
16776
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L406
|
16628
16777
|
|
16629
16778
|
Implementation:
|
16630
16779
|
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L507-L532
|
@@ -16648,7 +16797,7 @@ def MX_unary(*args) -> "casadi::MX":
|
|
16648
16797
|
Extra doc: https://github.com/casadi/casadi/wiki/L_r1
|
16649
16798
|
|
16650
16799
|
Doc source:
|
16651
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
16800
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L407
|
16652
16801
|
|
16653
16802
|
Implementation:
|
16654
16803
|
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L534-L536
|
@@ -16674,7 +16823,7 @@ def MX_inf(*args) -> "casadi::MX":
|
|
16674
16823
|
Extra doc: https://github.com/casadi/casadi/wiki/L_r2
|
16675
16824
|
|
16676
16825
|
Doc source:
|
16677
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
16826
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L416
|
16678
16827
|
|
16679
16828
|
Implementation:
|
16680
16829
|
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L554-L556
|
@@ -16695,7 +16844,7 @@ def MX_inf(*args) -> "casadi::MX":
|
|
16695
16844
|
Extra doc: https://github.com/casadi/casadi/wiki/L_r2
|
16696
16845
|
|
16697
16846
|
Doc source:
|
16698
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
16847
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L415
|
16699
16848
|
|
16700
16849
|
Implementation:
|
16701
16850
|
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L550-L552
|
@@ -16719,7 +16868,7 @@ def MX_inf(*args) -> "casadi::MX":
|
|
16719
16868
|
Extra doc: https://github.com/casadi/casadi/wiki/L_r2
|
16720
16869
|
|
16721
16870
|
Doc source:
|
16722
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
16871
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L416
|
16723
16872
|
|
16724
16873
|
Implementation:
|
16725
16874
|
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L554-L556
|
@@ -16743,7 +16892,7 @@ def MX_inf(*args) -> "casadi::MX":
|
|
16743
16892
|
Extra doc: https://github.com/casadi/casadi/wiki/L_r2
|
16744
16893
|
|
16745
16894
|
Doc source:
|
16746
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
16895
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L414
|
16747
16896
|
|
16748
16897
|
Implementation:
|
16749
16898
|
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L558-L560
|
@@ -16772,7 +16921,7 @@ def MX_nan(*args) -> "casadi::MX":
|
|
16772
16921
|
Extra doc: https://github.com/casadi/casadi/wiki/L_r3
|
16773
16922
|
|
16774
16923
|
Doc source:
|
16775
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
16924
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L425
|
16776
16925
|
|
16777
16926
|
Implementation:
|
16778
16927
|
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L566-L568
|
@@ -16793,7 +16942,7 @@ def MX_nan(*args) -> "casadi::MX":
|
|
16793
16942
|
Extra doc: https://github.com/casadi/casadi/wiki/L_r3
|
16794
16943
|
|
16795
16944
|
Doc source:
|
16796
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
16945
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L424
|
16797
16946
|
|
16798
16947
|
Implementation:
|
16799
16948
|
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L562-L564
|
@@ -16817,7 +16966,7 @@ def MX_nan(*args) -> "casadi::MX":
|
|
16817
16966
|
Extra doc: https://github.com/casadi/casadi/wiki/L_r3
|
16818
16967
|
|
16819
16968
|
Doc source:
|
16820
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
16969
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L425
|
16821
16970
|
|
16822
16971
|
Implementation:
|
16823
16972
|
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L566-L568
|
@@ -16841,7 +16990,7 @@ def MX_nan(*args) -> "casadi::MX":
|
|
16841
16990
|
Extra doc: https://github.com/casadi/casadi/wiki/L_r3
|
16842
16991
|
|
16843
16992
|
Doc source:
|
16844
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
16993
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L423
|
16845
16994
|
|
16846
16995
|
Implementation:
|
16847
16996
|
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L570-L572
|
@@ -16893,7 +17042,7 @@ def MX_einstein(*args) -> "casadi::MX":
|
|
16893
17042
|
Extra doc: https://github.com/casadi/casadi/wiki/L_r5
|
16894
17043
|
|
16895
17044
|
Doc source:
|
16896
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
17045
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L528
|
16897
17046
|
|
16898
17047
|
Implementation:
|
16899
17048
|
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L646-L652
|
@@ -16925,7 +17074,7 @@ def MX_einstein(*args) -> "casadi::MX":
|
|
16925
17074
|
Extra doc: https://github.com/casadi/casadi/wiki/L_r5
|
16926
17075
|
|
16927
17076
|
Doc source:
|
16928
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
17077
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L528
|
16929
17078
|
|
16930
17079
|
Implementation:
|
16931
17080
|
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L646-L652
|
@@ -16960,7 +17109,7 @@ def MX_einstein(*args) -> "casadi::MX":
|
|
16960
17109
|
Extra doc: https://github.com/casadi/casadi/wiki/L_r5
|
16961
17110
|
|
16962
17111
|
Doc source:
|
16963
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
17112
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L522
|
16964
17113
|
|
16965
17114
|
Implementation:
|
16966
17115
|
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L638-L644
|
@@ -24117,7 +24266,7 @@ def external(*args) -> "casadi::Function":
|
|
24117
24266
|
https://github.com/casadi/casadi/blob/develop/casadi/core/external.hpp#L42
|
24118
24267
|
|
24119
24268
|
Implementation:
|
24120
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/external.cpp#L42-
|
24269
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/external.cpp#L42-L48
|
24121
24270
|
|
24122
24271
|
|
24123
24272
|
|
@@ -24147,10 +24296,10 @@ def external(*args) -> "casadi::Function":
|
|
24147
24296
|
Extra doc: https://github.com/casadi/casadi/wiki/L_i0
|
24148
24297
|
|
24149
24298
|
Doc source:
|
24150
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/external.hpp#
|
24299
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/external.hpp#L50
|
24151
24300
|
|
24152
24301
|
Implementation:
|
24153
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/external.cpp#
|
24302
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/external.cpp#L50-L52
|
24154
24303
|
|
24155
24304
|
|
24156
24305
|
|
@@ -24184,10 +24333,10 @@ def external(*args) -> "casadi::Function":
|
|
24184
24333
|
Extra doc: https://github.com/casadi/casadi/wiki/L_i1
|
24185
24334
|
|
24186
24335
|
Doc source:
|
24187
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/external.hpp#
|
24336
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/external.hpp#L54
|
24188
24337
|
|
24189
24338
|
Implementation:
|
24190
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/external.cpp#
|
24339
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/external.cpp#L54-L57
|
24191
24340
|
|
24192
24341
|
|
24193
24342
|
|
@@ -24213,7 +24362,7 @@ def external(*args) -> "casadi::Function":
|
|
24213
24362
|
https://github.com/casadi/casadi/blob/develop/casadi/core/external.hpp#L42
|
24214
24363
|
|
24215
24364
|
Implementation:
|
24216
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/external.cpp#L42-
|
24365
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/external.cpp#L42-L48
|
24217
24366
|
|
24218
24367
|
|
24219
24368
|
|
@@ -25896,6 +26045,25 @@ def conic(*args) -> "casadi::Function":
|
|
25896
26045
|
| | | available. | |
|
25897
26046
|
| | | [default: true] | |
|
25898
26047
|
+------------------+-----------------+------------------+------------------+
|
26048
|
+
| equality | OT_BOOLVECTOR | Indicate an | casadi::Conic |
|
26049
|
+
| | | upfront hint | |
|
26050
|
+
| | | which of the | |
|
26051
|
+
| | | constraints are | |
|
26052
|
+
| | | equalities. Some | |
|
26053
|
+
| | | solvers may be | |
|
26054
|
+
| | | able to exploit | |
|
26055
|
+
| | | this knowledge. | |
|
26056
|
+
| | | When true, the | |
|
26057
|
+
| | | corresponding | |
|
26058
|
+
| | | lower and upper | |
|
26059
|
+
| | | bounds are | |
|
26060
|
+
| | | assumed equal. | |
|
26061
|
+
| | | When false, the | |
|
26062
|
+
| | | corresponding | |
|
26063
|
+
| | | bounds may be | |
|
26064
|
+
| | | equal or | |
|
26065
|
+
| | | different. | |
|
26066
|
+
+------------------+-----------------+------------------+------------------+
|
25899
26067
|
| error_on_fail | OT_BOOL | Throw exceptions | casadi::ProtoFun |
|
25900
26068
|
| | | when function | ction |
|
25901
26069
|
| | | evaluation fails | |
|
@@ -26173,6 +26341,8 @@ def conic(*args) -> "casadi::Function":
|
|
26173
26341
|
|
26174
26342
|
- cplex
|
26175
26343
|
|
26344
|
+
- daqp
|
26345
|
+
|
26176
26346
|
- fatrop
|
26177
26347
|
|
26178
26348
|
- gurobi
|
@@ -26333,6 +26503,30 @@ def conic(*args) -> "casadi::Function":
|
|
26333
26503
|
|
26334
26504
|
|
26335
26505
|
|
26506
|
+
--------------------------------------------------------------------------------
|
26507
|
+
|
26508
|
+
daqp
|
26509
|
+
----
|
26510
|
+
|
26511
|
+
|
26512
|
+
|
26513
|
+
Interface to Daqp solver for sparse Quadratic Programs, see daqp.dev
|
26514
|
+
for
|
26515
|
+
more information and https://www.maths.ed.ac.uk/hall/Daqp/DaqpOptions.html
|
26516
|
+
for a list of options.
|
26517
|
+
|
26518
|
+
Extra doc: https://github.com/casadi/casadi/wiki/L_27p
|
26519
|
+
|
26520
|
+
>List of available options
|
26521
|
+
|
26522
|
+
+------+---------+-------------------------------+
|
26523
|
+
| Id | Type | Description |
|
26524
|
+
+======+=========+===============================+
|
26525
|
+
| daqp | OT_DICT | Options to be passed to Daqp. |
|
26526
|
+
+------+---------+-------------------------------+
|
26527
|
+
|
26528
|
+
|
26529
|
+
|
26336
26530
|
--------------------------------------------------------------------------------
|
26337
26531
|
|
26338
26532
|
fatrop
|
@@ -26372,19 +26566,22 @@ def conic(*args) -> "casadi::Function":
|
|
26372
26566
|
|
26373
26567
|
>List of available options
|
26374
26568
|
|
26375
|
-
|
26376
|
-
|
|
26377
|
-
|
26378
|
-
| N
|
26379
|
-
|
26380
|
-
| fatrop
|
26381
|
-
|
26382
|
-
| ng
|
26383
|
-
|
26384
|
-
|
26385
|
-
|
26386
|
-
|
26387
|
-
|
26569
|
+
+---------------------+--------------+-------------------------------------+
|
26570
|
+
| Id | Type | Description |
|
26571
|
+
+=====================+==============+=====================================+
|
26572
|
+
| N | OT_INT | OCP horizon |
|
26573
|
+
+---------------------+--------------+-------------------------------------+
|
26574
|
+
| fatrop | OT_DICT | Options to be passed to fatrop |
|
26575
|
+
+---------------------+--------------+-------------------------------------+
|
26576
|
+
| ng | OT_INTVECTOR | Number of non-dynamic constraints, |
|
26577
|
+
| | | length N+1 |
|
26578
|
+
+---------------------+--------------+-------------------------------------+
|
26579
|
+
| nu | OT_INTVECTOR | Number of controls, length N |
|
26580
|
+
+---------------------+--------------+-------------------------------------+
|
26581
|
+
| nx | OT_INTVECTOR | Number of states, length N+1 |
|
26582
|
+
+---------------------+--------------+-------------------------------------+
|
26583
|
+
| structure_detection | OT_STRING | NONE | auto | manual |
|
26584
|
+
+---------------------+--------------+-------------------------------------+
|
26388
26585
|
|
26389
26586
|
|
26390
26587
|
|
@@ -27197,10 +27394,10 @@ def conic_options(*args) -> "std::vector< std::string,std::allocator< std::strin
|
|
27197
27394
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1ek
|
27198
27395
|
|
27199
27396
|
Doc source:
|
27200
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/conic.hpp#
|
27397
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/conic.hpp#L556
|
27201
27398
|
|
27202
27399
|
Implementation:
|
27203
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/conic.cpp#
|
27400
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/conic.cpp#L556-L558
|
27204
27401
|
|
27205
27402
|
|
27206
27403
|
|
@@ -27221,10 +27418,10 @@ def conic_option_type(*args) -> "std::string":
|
|
27221
27418
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1el
|
27222
27419
|
|
27223
27420
|
Doc source:
|
27224
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/conic.hpp#
|
27421
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/conic.hpp#L560
|
27225
27422
|
|
27226
27423
|
Implementation:
|
27227
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/conic.cpp#
|
27424
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/conic.cpp#L560-L562
|
27228
27425
|
|
27229
27426
|
|
27230
27427
|
|
@@ -27245,10 +27442,10 @@ def conic_option_info(*args) -> "std::string":
|
|
27245
27442
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1em
|
27246
27443
|
|
27247
27444
|
Doc source:
|
27248
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/conic.hpp#
|
27445
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/conic.hpp#L564
|
27249
27446
|
|
27250
27447
|
Implementation:
|
27251
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/conic.cpp#
|
27448
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/conic.cpp#L564-L566
|
27252
27449
|
|
27253
27450
|
|
27254
27451
|
|
@@ -27696,6 +27893,25 @@ def nlpsol(*args) -> "casadi::Function":
|
|
27696
27893
|
| | | available. | |
|
27697
27894
|
| | | [default: true] | |
|
27698
27895
|
+------------------+-----------------+------------------+------------------+
|
27896
|
+
| equality | OT_BOOLVECTOR | Indicate an | casadi::Nlpsol |
|
27897
|
+
| | | upfront hint | |
|
27898
|
+
| | | which of the | |
|
27899
|
+
| | | constraints are | |
|
27900
|
+
| | | equalities. Some | |
|
27901
|
+
| | | solvers may be | |
|
27902
|
+
| | | able to exploit | |
|
27903
|
+
| | | this knowledge. | |
|
27904
|
+
| | | When true, the | |
|
27905
|
+
| | | corresponding | |
|
27906
|
+
| | | lower and upper | |
|
27907
|
+
| | | bounds are | |
|
27908
|
+
| | | assumed equal. | |
|
27909
|
+
| | | When false, the | |
|
27910
|
+
| | | corresponding | |
|
27911
|
+
| | | bounds may be | |
|
27912
|
+
| | | equal or | |
|
27913
|
+
| | | different. | |
|
27914
|
+
+------------------+-----------------+------------------+------------------+
|
27699
27915
|
| error_on_fail | OT_BOOL | Throw exceptions | casadi::ProtoFun |
|
27700
27916
|
| | | when function | ction |
|
27701
27917
|
| | | evaluation fails | |
|
@@ -28065,10 +28281,14 @@ def nlpsol(*args) -> "casadi::Function":
|
|
28065
28281
|
|
28066
28282
|
- bonmin
|
28067
28283
|
|
28284
|
+
- fatrop
|
28285
|
+
|
28068
28286
|
- ipopt
|
28069
28287
|
|
28070
28288
|
- knitro
|
28071
28289
|
|
28290
|
+
- madnlp
|
28291
|
+
|
28072
28292
|
- snopt
|
28073
28293
|
|
28074
28294
|
- worhp
|
@@ -28423,6 +28643,90 @@ def nlpsol(*args) -> "casadi::Function":
|
|
28423
28643
|
|
28424
28644
|
|
28425
28645
|
|
28646
|
+
--------------------------------------------------------------------------------
|
28647
|
+
|
28648
|
+
fatrop
|
28649
|
+
------
|
28650
|
+
|
28651
|
+
|
28652
|
+
|
28653
|
+
>List of available options
|
28654
|
+
|
28655
|
+
+---------------------+--------------+-------------------------------------+
|
28656
|
+
| Id | Type | Description |
|
28657
|
+
+=====================+==============+=====================================+
|
28658
|
+
| N | OT_INT | OCP horizon |
|
28659
|
+
+---------------------+--------------+-------------------------------------+
|
28660
|
+
| convexify_margin | OT_DOUBLE | When using a convexification |
|
28661
|
+
| | | strategy, make sure that the |
|
28662
|
+
| | | smallest eigenvalue is at least |
|
28663
|
+
| | | this (default: 1e-7). |
|
28664
|
+
+---------------------+--------------+-------------------------------------+
|
28665
|
+
| convexify_strategy | OT_STRING | NONE|regularize|eigen- |
|
28666
|
+
| | | reflect|eigen-clip. Strategy to |
|
28667
|
+
| | | convexify the Lagrange Hessian |
|
28668
|
+
| | | before passing it to the solver. |
|
28669
|
+
+---------------------+--------------+-------------------------------------+
|
28670
|
+
| debug | OT_BOOL | Produce debug information (default: |
|
28671
|
+
| | | false) |
|
28672
|
+
+---------------------+--------------+-------------------------------------+
|
28673
|
+
| fatrop | OT_DICT | Options to be passed to fatrop |
|
28674
|
+
+---------------------+--------------+-------------------------------------+
|
28675
|
+
| ng | OT_INTVECTOR | Number of non-dynamic constraints, |
|
28676
|
+
| | | length N+1 |
|
28677
|
+
+---------------------+--------------+-------------------------------------+
|
28678
|
+
| nu | OT_INTVECTOR | Number of controls, length N+1 |
|
28679
|
+
+---------------------+--------------+-------------------------------------+
|
28680
|
+
| nx | OT_INTVECTOR | Number of states, length N+1 |
|
28681
|
+
+---------------------+--------------+-------------------------------------+
|
28682
|
+
| structure_detection | OT_STRING | NONE | auto | manual |
|
28683
|
+
+---------------------+--------------+-------------------------------------+
|
28684
|
+
|
28685
|
+
Fatrop is a solver developed at KU Leuven by Lander Vanroye and Wilm
|
28686
|
+
Decre.
|
28687
|
+
The algorithm is based on IPOPT, but the linear algebra is much
|
28688
|
+
more
|
28689
|
+
efficient.
|
28690
|
+
|
28691
|
+
With structure_detection = 'none' (default), it will behave as a
|
28692
|
+
general-
|
28693
|
+
purpose dense nonlinear program solver.
|
28694
|
+
|
28695
|
+
With structure_detection = 'manual', you can specify a block
|
28696
|
+
structure.
|
28697
|
+
|
28698
|
+
Let's say you perform multiply shooting with a system
|
28699
|
+
|
28700
|
+
x_k+1 = A_k x_k + B_k u_k
|
28701
|
+
|
28702
|
+
Suppose your constraint Jacobian looks like:
|
28703
|
+
|
28704
|
+
::
|
28705
|
+
|
28706
|
+
nx0 nu0 nx1 nu1 nx2 nu2
|
28707
|
+
-----------------------------
|
28708
|
+
|
28709
|
+
|
28710
|
+
nx1 |A0 B0 I0
|
28711
|
+
ng1 |C0 D0
|
28712
|
+
nx2 | A1 B1 I1
|
28713
|
+
ng2 | C1 D1
|
28714
|
+
ng3 | C2 D2
|
28715
|
+
|
28716
|
+
with n* capturing the number of states, inputs, and constraints in
|
28717
|
+
each
|
28718
|
+
block.
|
28719
|
+
|
28720
|
+
You can then specify this structure with:
|
28721
|
+
|
28722
|
+
N = 2 nx = [nx0 ,nx1, nx2] nu = [nu0, nu1, nu2] ng = [ng1, ng2, ng3]
|
28723
|
+
|
28724
|
+
With structure_detection = 'auto', the block-defining parameters nx,
|
28725
|
+
nu,
|
28726
|
+
ng, and N are automatically detected from the sparsity pattern.
|
28727
|
+
|
28728
|
+
|
28729
|
+
|
28426
28730
|
--------------------------------------------------------------------------------
|
28427
28731
|
|
28428
28732
|
ipopt
|
@@ -28582,6 +28886,37 @@ def nlpsol(*args) -> "casadi::Function":
|
|
28582
28886
|
|
28583
28887
|
|
28584
28888
|
|
28889
|
+
--------------------------------------------------------------------------------
|
28890
|
+
|
28891
|
+
madnlp
|
28892
|
+
------
|
28893
|
+
|
28894
|
+
|
28895
|
+
|
28896
|
+
>List of available options
|
28897
|
+
|
28898
|
+
+--------------------+--------------+--------------------------------------+
|
28899
|
+
| Id | Type | Description |
|
28900
|
+
+====================+==============+======================================+
|
28901
|
+
| convexify_margin | OT_DOUBLE | When using a convexification |
|
28902
|
+
| | | strategy, make sure that the |
|
28903
|
+
| | | smallest eigenvalue is at least this |
|
28904
|
+
| | | (default: 1e-7). |
|
28905
|
+
+--------------------+--------------+--------------------------------------+
|
28906
|
+
| convexify_strategy | OT_STRING | NONE|regularize|eigen-reflect|eigen- |
|
28907
|
+
| | | clip. Strategy to convexify the |
|
28908
|
+
| | | Lagrange Hessian before passing it |
|
28909
|
+
| | | to the solver. |
|
28910
|
+
+--------------------+--------------+--------------------------------------+
|
28911
|
+
| madnlp | OT_DICT | Options to be passed to madnlp |
|
28912
|
+
+--------------------+--------------+--------------------------------------+
|
28913
|
+
| ng | OT_INTVECTOR | Number of constraints |
|
28914
|
+
+--------------------+--------------+--------------------------------------+
|
28915
|
+
| nw | OT_INTVECTOR | Number of variables |
|
28916
|
+
+--------------------+--------------+--------------------------------------+
|
28917
|
+
|
28918
|
+
|
28919
|
+
|
28585
28920
|
--------------------------------------------------------------------------------
|
28586
28921
|
|
28587
28922
|
snopt
|
@@ -29472,10 +29807,10 @@ def nlpsol_options(*args) -> "std::vector< std::string,std::allocator< std::stri
|
|
29472
29807
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1t5
|
29473
29808
|
|
29474
29809
|
Doc source:
|
29475
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.hpp#
|
29810
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.hpp#L820
|
29476
29811
|
|
29477
29812
|
Implementation:
|
29478
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.cpp#
|
29813
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.cpp#L820-L822
|
29479
29814
|
|
29480
29815
|
|
29481
29816
|
|
@@ -29496,10 +29831,10 @@ def nlpsol_option_type(*args) -> "std::string":
|
|
29496
29831
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1t6
|
29497
29832
|
|
29498
29833
|
Doc source:
|
29499
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.hpp#
|
29834
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.hpp#L824
|
29500
29835
|
|
29501
29836
|
Implementation:
|
29502
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.cpp#
|
29837
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.cpp#L824-L826
|
29503
29838
|
|
29504
29839
|
|
29505
29840
|
|
@@ -29520,10 +29855,10 @@ def nlpsol_option_info(*args) -> "std::string":
|
|
29520
29855
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1t7
|
29521
29856
|
|
29522
29857
|
Doc source:
|
29523
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.hpp#
|
29858
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.hpp#L828
|
29524
29859
|
|
29525
29860
|
Implementation:
|
29526
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.cpp#
|
29861
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.cpp#L828-L830
|
29527
29862
|
|
29528
29863
|
|
29529
29864
|
|
@@ -33740,7 +34075,7 @@ class CodeGenerator(_object):
|
|
33740
34075
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L69
|
33741
34076
|
|
33742
34077
|
Implementation:
|
33743
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
34078
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L999-L1019
|
33744
34079
|
|
33745
34080
|
|
33746
34081
|
|
@@ -35905,10 +36240,10 @@ def symvar(*args) -> "std::vector< casadi::Matrix< casadi::SXElem >,std::allocat
|
|
35905
36240
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1u
|
35906
36241
|
|
35907
36242
|
Doc source:
|
35908
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#
|
36243
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L548
|
35909
36244
|
|
35910
36245
|
Implementation:
|
35911
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#
|
36246
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L440-L446
|
35912
36247
|
|
35913
36248
|
|
35914
36249
|
|
@@ -36008,10 +36343,10 @@ def linspace(*args) -> "casadi::Matrix< casadi::SXElem >":
|
|
36008
36343
|
|
36009
36344
|
|
36010
36345
|
Doc source:
|
36011
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/casadi_misc.hpp#
|
36346
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/casadi_misc.hpp#L797
|
36012
36347
|
|
36013
36348
|
Implementation:
|
36014
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/casadi_misc.hpp#
|
36349
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/casadi_misc.hpp#L797-L808
|
36015
36350
|
|
36016
36351
|
|
36017
36352
|
|
@@ -36738,10 +37073,10 @@ def solve(*args) -> "casadi::Matrix< casadi::SXElem >":
|
|
36738
37073
|
|
36739
37074
|
|
36740
37075
|
Doc source:
|
36741
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#
|
37076
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L221
|
36742
37077
|
|
36743
37078
|
Implementation:
|
36744
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#
|
37079
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L161-L167
|
36745
37080
|
|
36746
37081
|
|
36747
37082
|
|
@@ -37279,10 +37614,10 @@ def diff(*args) -> "casadi::Matrix< casadi::SXElem >":
|
|
37279
37614
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1ln
|
37280
37615
|
|
37281
37616
|
Doc source:
|
37282
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/casadi_misc.hpp#
|
37617
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/casadi_misc.hpp#L899
|
37283
37618
|
|
37284
37619
|
Implementation:
|
37285
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/casadi_misc.hpp#
|
37620
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/casadi_misc.hpp#L899-L906
|
37286
37621
|
|
37287
37622
|
|
37288
37623
|
|
@@ -37304,10 +37639,10 @@ def cumsum(*args) -> "casadi::Matrix< casadi::SXElem >":
|
|
37304
37639
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1lm
|
37305
37640
|
|
37306
37641
|
Doc source:
|
37307
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/casadi_misc.hpp#
|
37642
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/casadi_misc.hpp#L877
|
37308
37643
|
|
37309
37644
|
Implementation:
|
37310
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/casadi_misc.hpp#
|
37645
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/casadi_misc.hpp#L877-L885
|
37311
37646
|
|
37312
37647
|
|
37313
37648
|
|
@@ -37343,7 +37678,7 @@ def einstein(*args) -> "casadi::Matrix< casadi::SXElem >":
|
|
37343
37678
|
Extra doc: https://github.com/casadi/casadi/wiki/L_r5
|
37344
37679
|
|
37345
37680
|
Doc source:
|
37346
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
37681
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L528
|
37347
37682
|
|
37348
37683
|
Implementation:
|
37349
37684
|
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L646-L652
|
@@ -37420,10 +37755,10 @@ def evalf(*args) -> "casadi::DM":
|
|
37420
37755
|
Extra doc: https://github.com/casadi/casadi/wiki/L_rf
|
37421
37756
|
|
37422
37757
|
Doc source:
|
37423
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
37758
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L811
|
37424
37759
|
|
37425
37760
|
Implementation:
|
37426
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
37761
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L811-L813
|
37427
37762
|
|
37428
37763
|
|
37429
37764
|
|
@@ -37498,10 +37833,10 @@ def reverse(*args) -> "std::vector< std::vector< casadi::Matrix< casadi::SXElem
|
|
37498
37833
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1la
|
37499
37834
|
|
37500
37835
|
Doc source:
|
37501
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/casadi_misc.hpp#
|
37836
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/casadi_misc.hpp#L543
|
37502
37837
|
|
37503
37838
|
Implementation:
|
37504
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/casadi_misc.hpp#
|
37839
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/casadi_misc.hpp#L543-L547
|
37505
37840
|
|
37506
37841
|
|
37507
37842
|
|
@@ -38424,10 +38759,10 @@ def find(*args) -> "casadi::MX":
|
|
38424
38759
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1le
|
38425
38760
|
|
38426
38761
|
Doc source:
|
38427
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/casadi_misc.hpp#
|
38762
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/casadi_misc.hpp#L572
|
38428
38763
|
|
38429
38764
|
Implementation:
|
38430
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/casadi_misc.hpp#
|
38765
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/casadi_misc.hpp#L572-L578
|
38431
38766
|
|
38432
38767
|
|
38433
38768
|
|
@@ -38449,10 +38784,10 @@ def low(*args) -> "casadi::MX":
|
|
38449
38784
|
Extra doc: https://github.com/casadi/casadi/wiki/L_r8
|
38450
38785
|
|
38451
38786
|
Doc source:
|
38452
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
38787
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L708
|
38453
38788
|
|
38454
38789
|
Implementation:
|
38455
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
38790
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L708-L710
|
38456
38791
|
|
38457
38792
|
|
38458
38793
|
|
@@ -38472,10 +38807,10 @@ def inv_node(*args) -> "casadi::MX":
|
|
38472
38807
|
Extra doc: https://github.com/casadi/casadi/wiki/L_re
|
38473
38808
|
|
38474
38809
|
Doc source:
|
38475
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
38810
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L802
|
38476
38811
|
|
38477
38812
|
Implementation:
|
38478
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
38813
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L802-L804
|
38479
38814
|
|
38480
38815
|
|
38481
38816
|
|
@@ -38500,10 +38835,10 @@ def matrix_expand(*args) -> "casadi::MX":
|
|
38500
38835
|
Extra doc: https://github.com/casadi/casadi/wiki/L_rc
|
38501
38836
|
|
38502
38837
|
Doc source:
|
38503
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
38838
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L754
|
38504
38839
|
|
38505
38840
|
Implementation:
|
38506
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
38841
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L754-L758
|
38507
38842
|
|
38508
38843
|
|
38509
38844
|
|
@@ -38528,10 +38863,10 @@ def graph_substitute(*args) -> "std::vector< casadi::MX,std::allocator< casadi::
|
|
38528
38863
|
Extra doc: https://github.com/casadi/casadi/wiki/L_ra
|
38529
38864
|
|
38530
38865
|
Doc source:
|
38531
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
38866
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L729
|
38532
38867
|
|
38533
38868
|
Implementation:
|
38534
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
38869
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L729-L733
|
38535
38870
|
|
38536
38871
|
|
38537
38872
|
|
@@ -38581,10 +38916,10 @@ def stop_diff(*args) -> "casadi::MX":
|
|
38581
38916
|
Extra doc: https://github.com/casadi/casadi/wiki/L_25o
|
38582
38917
|
|
38583
38918
|
Doc source:
|
38584
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
38919
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L844
|
38585
38920
|
|
38586
38921
|
Implementation:
|
38587
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
38922
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L844-L846
|
38588
38923
|
|
38589
38924
|
|
38590
38925
|
|
@@ -38592,6 +38927,28 @@ def stop_diff(*args) -> "casadi::MX":
|
|
38592
38927
|
"""
|
38593
38928
|
return _casadi.stop_diff(*args)
|
38594
38929
|
|
38930
|
+
def difference(*args) -> "std::vector< casadi::MX,std::allocator< casadi::MX > >":
|
38931
|
+
"""
|
38932
|
+
\\bried Return all elements of a that do not occur in b, preserving
|
38933
|
+
|
38934
|
+
::
|
38935
|
+
|
38936
|
+
difference([MX] a, [MX] b) -> [MX]
|
38937
|
+
|
38938
|
+
order
|
38939
|
+
|
38940
|
+
Doc source:
|
38941
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L849
|
38942
|
+
|
38943
|
+
Implementation:
|
38944
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L849-L851
|
38945
|
+
|
38946
|
+
|
38947
|
+
|
38948
|
+
|
38949
|
+
"""
|
38950
|
+
return _casadi.difference(*args)
|
38951
|
+
|
38595
38952
|
def no_hess(*args) -> "casadi::MX":
|
38596
38953
|
"""
|
38597
38954
|
Stop second derivatives of an expression wrt to all its symbolic
|
@@ -38607,10 +38964,10 @@ def no_hess(*args) -> "casadi::MX":
|
|
38607
38964
|
Extra doc: https://github.com/casadi/casadi/wiki/L_25n
|
38608
38965
|
|
38609
38966
|
Doc source:
|
38610
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
38967
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L836
|
38611
38968
|
|
38612
38969
|
Implementation:
|
38613
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
38970
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L836-L838
|
38614
38971
|
|
38615
38972
|
|
38616
38973
|
|
@@ -38633,10 +38990,10 @@ def no_grad(*args) -> "casadi::MX":
|
|
38633
38990
|
Extra doc: https://github.com/casadi/casadi/wiki/L_25m
|
38634
38991
|
|
38635
38992
|
Doc source:
|
38636
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
38993
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L827
|
38637
38994
|
|
38638
38995
|
Implementation:
|
38639
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#
|
38996
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L827-L829
|
38640
38997
|
|
38641
38998
|
|
38642
38999
|
|
@@ -47854,7 +48211,7 @@ class Opti(PrintableCommon, SharedObject):
|
|
47854
48211
|
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L200
|
47855
48212
|
|
47856
48213
|
Implementation:
|
47857
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#
|
48214
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L153-L159
|
47858
48215
|
|
47859
48216
|
|
47860
48217
|
|
@@ -47877,7 +48234,7 @@ class Opti(PrintableCommon, SharedObject):
|
|
47877
48234
|
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L200
|
47878
48235
|
|
47879
48236
|
Implementation:
|
47880
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#
|
48237
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L153-L159
|
47881
48238
|
|
47882
48239
|
|
47883
48240
|
|
@@ -47915,6 +48272,50 @@ class Opti(PrintableCommon, SharedObject):
|
|
47915
48272
|
return _casadi.Opti_set_value(self, *args)
|
47916
48273
|
|
47917
48274
|
|
48275
|
+
def set_domain(self, *args) -> "void":
|
48276
|
+
"""
|
48277
|
+
[INTERNAL]
|
48278
|
+
|
48279
|
+
::
|
48280
|
+
|
48281
|
+
set_domain(self, MX x, str domain)
|
48282
|
+
|
48283
|
+
Set domain of a decision variable.
|
48284
|
+
|
48285
|
+
Parameters:
|
48286
|
+
-----------
|
48287
|
+
|
48288
|
+
x:
|
48289
|
+
decision variable
|
48290
|
+
|
48291
|
+
type:
|
48292
|
+
'real', 'integer' (default: real)
|
48293
|
+
|
48294
|
+
|
48295
|
+
|
48296
|
+
::
|
48297
|
+
|
48298
|
+
* opti.set_domain(x, "real")
|
48299
|
+
* opti.set_domain(x, "integer")
|
48300
|
+
*
|
48301
|
+
|
48302
|
+
|
48303
|
+
|
48304
|
+
Extra doc: https://github.com/casadi/casadi/wiki/L_27t
|
48305
|
+
|
48306
|
+
Doc source:
|
48307
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L215
|
48308
|
+
|
48309
|
+
Implementation:
|
48310
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L145-L151
|
48311
|
+
|
48312
|
+
|
48313
|
+
|
48314
|
+
|
48315
|
+
"""
|
48316
|
+
return _casadi.Opti_set_domain(self, *args)
|
48317
|
+
|
48318
|
+
|
47918
48319
|
def solve(self, *args) -> "casadi::OptiSol":
|
47919
48320
|
"""
|
47920
48321
|
[INTERNAL]
|
@@ -47926,10 +48327,10 @@ class Opti(PrintableCommon, SharedObject):
|
|
47926
48327
|
Crunch the numbers; solve the problem.
|
47927
48328
|
|
47928
48329
|
Doc source:
|
47929
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#
|
48330
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L221
|
47930
48331
|
|
47931
48332
|
Implementation:
|
47932
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#
|
48333
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L161-L167
|
47933
48334
|
|
47934
48335
|
|
47935
48336
|
|
@@ -47955,10 +48356,10 @@ class Opti(PrintableCommon, SharedObject):
|
|
47955
48356
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1e
|
47956
48357
|
|
47957
48358
|
Doc source:
|
47958
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#
|
48359
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L229
|
47959
48360
|
|
47960
48361
|
Implementation:
|
47961
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#
|
48362
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L169-L175
|
47962
48363
|
|
47963
48364
|
|
47964
48365
|
|
@@ -47992,10 +48393,10 @@ class Opti(PrintableCommon, SharedObject):
|
|
47992
48393
|
value
|
47993
48394
|
|
47994
48395
|
Doc source:
|
47995
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#
|
48396
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L242
|
47996
48397
|
|
47997
48398
|
Implementation:
|
47998
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#
|
48399
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L194-L200
|
47999
48400
|
|
48000
48401
|
|
48001
48402
|
|
@@ -48023,10 +48424,10 @@ class Opti(PrintableCommon, SharedObject):
|
|
48023
48424
|
value
|
48024
48425
|
|
48025
48426
|
Doc source:
|
48026
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#
|
48427
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L241
|
48027
48428
|
|
48028
48429
|
Implementation:
|
48029
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#
|
48430
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L186-L192
|
48030
48431
|
|
48031
48432
|
|
48032
48433
|
|
@@ -48057,10 +48458,10 @@ class Opti(PrintableCommon, SharedObject):
|
|
48057
48458
|
value
|
48058
48459
|
|
48059
48460
|
Doc source:
|
48060
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#
|
48461
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L242
|
48061
48462
|
|
48062
48463
|
Implementation:
|
48063
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#
|
48464
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L194-L200
|
48064
48465
|
|
48065
48466
|
|
48066
48467
|
|
@@ -48091,10 +48492,10 @@ class Opti(PrintableCommon, SharedObject):
|
|
48091
48492
|
value
|
48092
48493
|
|
48093
48494
|
Doc source:
|
48094
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#
|
48495
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L240
|
48095
48496
|
|
48096
48497
|
Implementation:
|
48097
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#
|
48498
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L177-L183
|
48098
48499
|
|
48099
48500
|
|
48100
48501
|
|
@@ -48123,10 +48524,10 @@ class Opti(PrintableCommon, SharedObject):
|
|
48123
48524
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1f
|
48124
48525
|
|
48125
48526
|
Doc source:
|
48126
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#
|
48527
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L251
|
48127
48528
|
|
48128
48529
|
Implementation:
|
48129
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#
|
48530
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L202-L208
|
48130
48531
|
|
48131
48532
|
|
48132
48533
|
|
@@ -48157,10 +48558,10 @@ class Opti(PrintableCommon, SharedObject):
|
|
48157
48558
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1g
|
48158
48559
|
|
48159
48560
|
Doc source:
|
48160
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#
|
48561
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L259
|
48161
48562
|
|
48162
48563
|
Implementation:
|
48163
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#
|
48564
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L210-L216
|
48164
48565
|
|
48165
48566
|
|
48166
48567
|
|
@@ -48182,10 +48583,10 @@ class Opti(PrintableCommon, SharedObject):
|
|
48182
48583
|
Extra doc: https://github.com/casadi/casadi/wiki/L_266
|
48183
48584
|
|
48184
48585
|
Doc source:
|
48185
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#
|
48586
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L264
|
48186
48587
|
|
48187
48588
|
Implementation:
|
48188
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#
|
48589
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L218-L224
|
48189
48590
|
|
48190
48591
|
|
48191
48592
|
|
@@ -48207,10 +48608,10 @@ class Opti(PrintableCommon, SharedObject):
|
|
48207
48608
|
Extra doc: https://github.com/casadi/casadi/wiki/L_267
|
48208
48609
|
|
48209
48610
|
Doc source:
|
48210
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#
|
48611
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L269
|
48211
48612
|
|
48212
48613
|
Implementation:
|
48213
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#
|
48614
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L226-L232
|
48214
48615
|
|
48215
48616
|
|
48216
48617
|
|
@@ -48250,10 +48651,10 @@ class Opti(PrintableCommon, SharedObject):
|
|
48250
48651
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1h
|
48251
48652
|
|
48252
48653
|
Doc source:
|
48253
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#
|
48654
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L279
|
48254
48655
|
|
48255
48656
|
Implementation:
|
48256
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#
|
48657
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L242-L248
|
48257
48658
|
|
48258
48659
|
|
48259
48660
|
|
@@ -48275,10 +48676,10 @@ class Opti(PrintableCommon, SharedObject):
|
|
48275
48676
|
Extra doc: https://github.com/casadi/casadi/wiki/L_268
|
48276
48677
|
|
48277
48678
|
Doc source:
|
48278
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#
|
48679
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L284
|
48279
48680
|
|
48280
48681
|
Implementation:
|
48281
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#
|
48682
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L250-L256
|
48282
48683
|
|
48283
48684
|
|
48284
48685
|
|
@@ -48300,10 +48701,10 @@ class Opti(PrintableCommon, SharedObject):
|
|
48300
48701
|
Extra doc: https://github.com/casadi/casadi/wiki/L_269
|
48301
48702
|
|
48302
48703
|
Doc source:
|
48303
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#
|
48704
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L289
|
48304
48705
|
|
48305
48706
|
Implementation:
|
48306
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#
|
48707
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L258-L264
|
48307
48708
|
|
48308
48709
|
|
48309
48710
|
|
@@ -48325,10 +48726,10 @@ class Opti(PrintableCommon, SharedObject):
|
|
48325
48726
|
Extra doc: https://github.com/casadi/casadi/wiki/L_26a
|
48326
48727
|
|
48327
48728
|
Doc source:
|
48328
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#
|
48729
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L294
|
48329
48730
|
|
48330
48731
|
Implementation:
|
48331
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#
|
48732
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L266-L272
|
48332
48733
|
|
48333
48734
|
|
48334
48735
|
|
@@ -48351,10 +48752,10 @@ class Opti(PrintableCommon, SharedObject):
|
|
48351
48752
|
Extra doc: https://github.com/casadi/casadi/wiki/L_26b
|
48352
48753
|
|
48353
48754
|
Doc source:
|
48354
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#
|
48755
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L299
|
48355
48756
|
|
48356
48757
|
Implementation:
|
48357
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#
|
48758
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L274-L280
|
48358
48759
|
|
48359
48760
|
|
48360
48761
|
|
@@ -48376,10 +48777,10 @@ class Opti(PrintableCommon, SharedObject):
|
|
48376
48777
|
Extra doc: https://github.com/casadi/casadi/wiki/L_26c
|
48377
48778
|
|
48378
48779
|
Doc source:
|
48379
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#
|
48780
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L304
|
48380
48781
|
|
48381
48782
|
Implementation:
|
48382
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#
|
48783
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L282-L288
|
48383
48784
|
|
48384
48785
|
|
48385
48786
|
|
@@ -48401,10 +48802,10 @@ class Opti(PrintableCommon, SharedObject):
|
|
48401
48802
|
Extra doc: https://github.com/casadi/casadi/wiki/L_26d
|
48402
48803
|
|
48403
48804
|
Doc source:
|
48404
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#
|
48805
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L309
|
48405
48806
|
|
48406
48807
|
Implementation:
|
48407
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#
|
48808
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L290-L296
|
48408
48809
|
|
48409
48810
|
|
48410
48811
|
|
@@ -48426,10 +48827,10 @@ class Opti(PrintableCommon, SharedObject):
|
|
48426
48827
|
Extra doc: https://github.com/casadi/casadi/wiki/L_26e
|
48427
48828
|
|
48428
48829
|
Doc source:
|
48429
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#
|
48830
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L314
|
48430
48831
|
|
48431
48832
|
Implementation:
|
48432
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#
|
48833
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L298-L304
|
48433
48834
|
|
48434
48835
|
|
48435
48836
|
|
@@ -48451,10 +48852,10 @@ class Opti(PrintableCommon, SharedObject):
|
|
48451
48852
|
Extra doc: https://github.com/casadi/casadi/wiki/L_26f
|
48452
48853
|
|
48453
48854
|
Doc source:
|
48454
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#
|
48855
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L319
|
48455
48856
|
|
48456
48857
|
Implementation:
|
48457
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#
|
48858
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L306-L312
|
48458
48859
|
|
48459
48860
|
|
48460
48861
|
|
@@ -48500,10 +48901,10 @@ class Opti(PrintableCommon, SharedObject):
|
|
48500
48901
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1i
|
48501
48902
|
|
48502
48903
|
Doc source:
|
48503
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#
|
48904
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L331
|
48504
48905
|
|
48505
48906
|
Implementation:
|
48506
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#
|
48907
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L323-L329
|
48507
48908
|
|
48508
48909
|
|
48509
48910
|
|
@@ -48544,10 +48945,10 @@ class Opti(PrintableCommon, SharedObject):
|
|
48544
48945
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1j
|
48545
48946
|
|
48546
48947
|
Doc source:
|
48547
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#
|
48948
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L353
|
48548
48949
|
|
48549
48950
|
Implementation:
|
48550
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#
|
48951
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L349-L369
|
48551
48952
|
|
48552
48953
|
|
48553
48954
|
|
@@ -48582,10 +48983,10 @@ class Opti(PrintableCommon, SharedObject):
|
|
48582
48983
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1j
|
48583
48984
|
|
48584
48985
|
Doc source:
|
48585
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#
|
48986
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L343
|
48586
48987
|
|
48587
48988
|
Implementation:
|
48588
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#
|
48989
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L343-L347
|
48589
48990
|
|
48590
48991
|
|
48591
48992
|
|
@@ -48623,10 +49024,10 @@ class Opti(PrintableCommon, SharedObject):
|
|
48623
49024
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1j
|
48624
49025
|
|
48625
49026
|
Doc source:
|
48626
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#
|
49027
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L353
|
48627
49028
|
|
48628
49029
|
Implementation:
|
48629
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#
|
49030
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L349-L369
|
48630
49031
|
|
48631
49032
|
|
48632
49033
|
|
@@ -48664,10 +49065,10 @@ class Opti(PrintableCommon, SharedObject):
|
|
48664
49065
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1j
|
48665
49066
|
|
48666
49067
|
Doc source:
|
48667
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#
|
49068
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L347
|
48668
49069
|
|
48669
49070
|
Implementation:
|
48670
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#
|
49071
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L331-L341
|
48671
49072
|
|
48672
49073
|
|
48673
49074
|
|
@@ -48715,10 +49116,10 @@ class Opti(PrintableCommon, SharedObject):
|
|
48715
49116
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1l
|
48716
49117
|
|
48717
49118
|
Doc source:
|
48718
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#
|
49119
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L379
|
48719
49120
|
|
48720
49121
|
Implementation:
|
48721
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#
|
49122
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L741-L743
|
48722
49123
|
|
48723
49124
|
|
48724
49125
|
|
@@ -48748,10 +49149,10 @@ class Opti(PrintableCommon, SharedObject):
|
|
48748
49149
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1m
|
48749
49150
|
|
48750
49151
|
Doc source:
|
48751
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#
|
49152
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L389
|
48752
49153
|
|
48753
49154
|
Implementation:
|
48754
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#
|
49155
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L744-L746
|
48755
49156
|
|
48756
49157
|
|
48757
49158
|
|
@@ -48777,10 +49178,10 @@ class Opti(PrintableCommon, SharedObject):
|
|
48777
49178
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1n
|
48778
49179
|
|
48779
49180
|
Doc source:
|
48780
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#
|
49181
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L397
|
48781
49182
|
|
48782
49183
|
Implementation:
|
48783
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#
|
49184
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L747-L749
|
48784
49185
|
|
48785
49186
|
|
48786
49187
|
|
@@ -48816,10 +49217,10 @@ class Opti(PrintableCommon, SharedObject):
|
|
48816
49217
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1o
|
48817
49218
|
|
48818
49219
|
Doc source:
|
48819
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#
|
49220
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L405
|
48820
49221
|
|
48821
49222
|
Implementation:
|
48822
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#
|
49223
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L387-L393
|
48823
49224
|
|
48824
49225
|
|
48825
49226
|
|
@@ -48855,10 +49256,10 @@ class Opti(PrintableCommon, SharedObject):
|
|
48855
49256
|
Get user data.
|
48856
49257
|
|
48857
49258
|
Doc source:
|
48858
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#
|
49259
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L408
|
48859
49260
|
|
48860
49261
|
Implementation:
|
48861
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#
|
49262
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L400-L406
|
48862
49263
|
|
48863
49264
|
|
48864
49265
|
|
@@ -48878,10 +49279,10 @@ class Opti(PrintableCommon, SharedObject):
|
|
48878
49279
|
Readable name of the class.
|
48879
49280
|
|
48880
49281
|
Doc source:
|
48881
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#
|
49282
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L411
|
48882
49283
|
|
48883
49284
|
Implementation:
|
48884
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#
|
49285
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L411-L411
|
48885
49286
|
|
48886
49287
|
|
48887
49288
|
|
@@ -48901,10 +49302,10 @@ class Opti(PrintableCommon, SharedObject):
|
|
48901
49302
|
Print representation.
|
48902
49303
|
|
48903
49304
|
Doc source:
|
48904
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#
|
49305
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L414
|
48905
49306
|
|
48906
49307
|
Implementation:
|
48907
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#
|
49308
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L644-L664
|
48908
49309
|
|
48909
49310
|
|
48910
49311
|
|
@@ -48924,10 +49325,10 @@ class Opti(PrintableCommon, SharedObject):
|
|
48924
49325
|
Get string representation.
|
48925
49326
|
|
48926
49327
|
Doc source:
|
48927
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#
|
49328
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L417
|
48928
49329
|
|
48929
49330
|
Implementation:
|
48930
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#
|
49331
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L666-L670
|
48931
49332
|
|
48932
49333
|
|
48933
49334
|
|
@@ -48952,10 +49353,10 @@ class Opti(PrintableCommon, SharedObject):
|
|
48952
49353
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1p
|
48953
49354
|
|
48954
49355
|
Doc source:
|
48955
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#
|
49356
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L426
|
48956
49357
|
|
48957
49358
|
Implementation:
|
48958
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#
|
49359
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L379-L385
|
48959
49360
|
|
48960
49361
|
|
48961
49362
|
|
@@ -48975,10 +49376,10 @@ class Opti(PrintableCommon, SharedObject):
|
|
48975
49376
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1p
|
48976
49377
|
|
48977
49378
|
Doc source:
|
48978
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#
|
49379
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L426
|
48979
49380
|
|
48980
49381
|
Implementation:
|
48981
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#
|
49382
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L379-L385
|
48982
49383
|
|
48983
49384
|
|
48984
49385
|
|
@@ -49001,10 +49402,10 @@ class Opti(PrintableCommon, SharedObject):
|
|
49001
49402
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1p
|
49002
49403
|
|
49003
49404
|
Doc source:
|
49004
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#
|
49405
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L425
|
49005
49406
|
|
49006
49407
|
Implementation:
|
49007
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#
|
49408
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L371-L377
|
49008
49409
|
|
49009
49410
|
|
49010
49411
|
|
@@ -49233,6 +49634,8 @@ OPTI_UNKNOWN = _casadi.OPTI_UNKNOWN
|
|
49233
49634
|
OPTI_VAR = _casadi.OPTI_VAR
|
49234
49635
|
OPTI_PAR = _casadi.OPTI_PAR
|
49235
49636
|
OPTI_DUAL_G = _casadi.OPTI_DUAL_G
|
49637
|
+
OPTI_DOMAIN_REAL = _casadi.OPTI_DOMAIN_REAL
|
49638
|
+
OPTI_DOMAIN_INTEGER = _casadi.OPTI_DOMAIN_INTEGER
|
49236
49639
|
class IndexAbstraction(_object):
|
49237
49640
|
"""
|
49238
49641
|
|
@@ -49384,6 +49787,9 @@ class MetaVar(IndexAbstraction):
|
|
49384
49787
|
__swig_getmethods__["type"] = _casadi.MetaVar_type_get
|
49385
49788
|
if _newclass:
|
49386
49789
|
type = _swig_property(_casadi.MetaVar_type_get)
|
49790
|
+
__swig_getmethods__["domain"] = _casadi.MetaVar_domain_get
|
49791
|
+
if _newclass:
|
49792
|
+
domain = _swig_property(_casadi.MetaVar_domain_get)
|
49387
49793
|
__swig_getmethods__["count"] = _casadi.MetaVar_count_get
|
49388
49794
|
if _newclass:
|
49389
49795
|
count = _swig_property(_casadi.MetaVar_count_get)
|
@@ -49513,10 +49919,10 @@ class OptiAdvanced(Opti):
|
|
49513
49919
|
Get the underlying CasADi solver of the Opti stack.
|
49514
49920
|
|
49515
49921
|
Doc source:
|
49516
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#
|
49922
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L534
|
49517
49923
|
|
49518
49924
|
Implementation:
|
49519
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#
|
49925
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L408-L414
|
49520
49926
|
|
49521
49927
|
|
49522
49928
|
|
@@ -49537,10 +49943,10 @@ class OptiAdvanced(Opti):
|
|
49537
49943
|
not variables
|
49538
49944
|
|
49539
49945
|
Doc source:
|
49540
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#
|
49946
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L537
|
49541
49947
|
|
49542
49948
|
Implementation:
|
49543
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#
|
49949
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L416-L422
|
49544
49950
|
|
49545
49951
|
|
49546
49952
|
|
@@ -49567,10 +49973,10 @@ class OptiAdvanced(Opti):
|
|
49567
49973
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1u
|
49568
49974
|
|
49569
49975
|
Doc source:
|
49570
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#
|
49976
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L548
|
49571
49977
|
|
49572
49978
|
Implementation:
|
49573
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#
|
49979
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L440-L446
|
49574
49980
|
|
49575
49981
|
|
49576
49982
|
|
@@ -49591,10 +49997,10 @@ class OptiAdvanced(Opti):
|
|
49591
49997
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1u
|
49592
49998
|
|
49593
49999
|
Doc source:
|
49594
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#
|
50000
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L546
|
49595
50001
|
|
49596
50002
|
Implementation:
|
49597
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#
|
50003
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L424-L430
|
49598
50004
|
|
49599
50005
|
|
49600
50006
|
|
@@ -49618,10 +50024,10 @@ class OptiAdvanced(Opti):
|
|
49618
50024
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1u
|
49619
50025
|
|
49620
50026
|
Doc source:
|
49621
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#
|
50027
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L547
|
49622
50028
|
|
49623
50029
|
Implementation:
|
49624
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#
|
50030
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L432-L438
|
49625
50031
|
|
49626
50032
|
|
49627
50033
|
|
@@ -49645,10 +50051,10 @@ class OptiAdvanced(Opti):
|
|
49645
50051
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1u
|
49646
50052
|
|
49647
50053
|
Doc source:
|
49648
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#
|
50054
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L548
|
49649
50055
|
|
49650
50056
|
Implementation:
|
49651
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#
|
50057
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L440-L446
|
49652
50058
|
|
49653
50059
|
|
49654
50060
|
|
@@ -49671,10 +50077,10 @@ class OptiAdvanced(Opti):
|
|
49671
50077
|
Interpret an expression (for internal use only)
|
49672
50078
|
|
49673
50079
|
Doc source:
|
49674
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#
|
50080
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L552
|
49675
50081
|
|
49676
50082
|
Implementation:
|
49677
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#
|
50083
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L448-L454
|
49678
50084
|
|
49679
50085
|
|
49680
50086
|
|
@@ -49694,10 +50100,10 @@ class OptiAdvanced(Opti):
|
|
49694
50100
|
Get meta-data of symbol (for internal use only)
|
49695
50101
|
|
49696
50102
|
Doc source:
|
49697
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#
|
50103
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L555
|
49698
50104
|
|
49699
50105
|
Implementation:
|
49700
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#
|
50106
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L456-L462
|
49701
50107
|
|
49702
50108
|
|
49703
50109
|
|
@@ -49717,10 +50123,10 @@ class OptiAdvanced(Opti):
|
|
49717
50123
|
Get meta-data of symbol (for internal use only)
|
49718
50124
|
|
49719
50125
|
Doc source:
|
49720
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#
|
50126
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L558
|
49721
50127
|
|
49722
50128
|
Implementation:
|
49723
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#
|
50129
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L464-L470
|
49724
50130
|
|
49725
50131
|
|
49726
50132
|
|
@@ -49740,10 +50146,10 @@ class OptiAdvanced(Opti):
|
|
49740
50146
|
Set meta-data of an expression.
|
49741
50147
|
|
49742
50148
|
Doc source:
|
49743
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#
|
50149
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L561
|
49744
50150
|
|
49745
50151
|
Implementation:
|
49746
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#
|
50152
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L472-L478
|
49747
50153
|
|
49748
50154
|
|
49749
50155
|
|
@@ -49763,10 +50169,10 @@ class OptiAdvanced(Opti):
|
|
49763
50169
|
Set meta-data of an expression.
|
49764
50170
|
|
49765
50171
|
Doc source:
|
49766
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#
|
50172
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L564
|
49767
50173
|
|
49768
50174
|
Implementation:
|
49769
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#
|
50175
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L480-L486
|
49770
50176
|
|
49771
50177
|
|
49772
50178
|
|
@@ -50025,10 +50431,10 @@ class OptiAdvanced(Opti):
|
|
50025
50431
|
Fix the structure of the optimization problem.
|
50026
50432
|
|
50027
50433
|
Doc source:
|
50028
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#
|
50434
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L595
|
50029
50435
|
|
50030
50436
|
Implementation:
|
50031
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#
|
50437
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L672-L678
|
50032
50438
|
|
50033
50439
|
|
50034
50440
|
|
@@ -50316,10 +50722,10 @@ class OptiSol(PrintableCommon):
|
|
50316
50722
|
value
|
50317
50723
|
|
50318
50724
|
Doc source:
|
50319
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#
|
50725
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L645
|
50320
50726
|
|
50321
50727
|
Implementation:
|
50322
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#
|
50728
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L768-L770
|
50323
50729
|
|
50324
50730
|
|
50325
50731
|
|
@@ -50347,10 +50753,10 @@ class OptiSol(PrintableCommon):
|
|
50347
50753
|
value
|
50348
50754
|
|
50349
50755
|
Doc source:
|
50350
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#
|
50756
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L644
|
50351
50757
|
|
50352
50758
|
Implementation:
|
50353
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#
|
50759
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L765-L767
|
50354
50760
|
|
50355
50761
|
|
50356
50762
|
|
@@ -50381,10 +50787,10 @@ class OptiSol(PrintableCommon):
|
|
50381
50787
|
value
|
50382
50788
|
|
50383
50789
|
Doc source:
|
50384
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#
|
50790
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L645
|
50385
50791
|
|
50386
50792
|
Implementation:
|
50387
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#
|
50793
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L768-L770
|
50388
50794
|
|
50389
50795
|
|
50390
50796
|
|
@@ -50415,10 +50821,10 @@ class OptiSol(PrintableCommon):
|
|
50415
50821
|
value
|
50416
50822
|
|
50417
50823
|
Doc source:
|
50418
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#
|
50824
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L643
|
50419
50825
|
|
50420
50826
|
Implementation:
|
50421
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#
|
50827
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L762-L764
|
50422
50828
|
|
50423
50829
|
|
50424
50830
|
|
@@ -50441,10 +50847,10 @@ class OptiSol(PrintableCommon):
|
|
50441
50847
|
get assignment expressions for the optimal solution
|
50442
50848
|
|
50443
50849
|
Doc source:
|
50444
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#
|
50850
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L649
|
50445
50851
|
|
50446
50852
|
Implementation:
|
50447
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#
|
50853
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L772-L774
|
50448
50854
|
|
50449
50855
|
|
50450
50856
|
|
@@ -50484,10 +50890,10 @@ class OptiSol(PrintableCommon):
|
|
50484
50890
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1w
|
50485
50891
|
|
50486
50892
|
Doc source:
|
50487
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#
|
50893
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L658
|
50488
50894
|
|
50489
50895
|
Implementation:
|
50490
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#
|
50896
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L780-L782
|
50491
50897
|
|
50492
50898
|
|
50493
50899
|
|