casadi 3.6.3__cp35-none-manylinux2010_x86_64.whl → 3.6.5__cp35-none-manylinux2010_x86_64.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.so +0 -0
- casadi/casadi.py +415 -260
- casadi/cbc +0 -0
- casadi/clp +0 -0
- casadi/cmake/casadi-config-version.cmake +1 -1
- casadi/include/casadi/casadi.i +43 -18
- casadi/include/casadi/config.h +6 -6
- casadi/include/casadi/core/calculus.hpp +1 -1
- casadi/include/casadi/core/code_generator.hpp +29 -1
- casadi/include/casadi/core/core.hpp +1 -0
- casadi/include/casadi/core/fmu.hpp +29 -1
- casadi/include/casadi/core/generic_expression.hpp +1 -1
- casadi/include/casadi/core/generic_type.hpp +25 -1
- casadi/include/casadi/core/matrix_decl.hpp +15 -0
- casadi/include/casadi/core/nlpsol.hpp +0 -2
- casadi/include/casadi/core/runtime/casadi_nlp.hpp +131 -6
- casadi/include/casadi/core/runtime/casadi_sqpmethod.hpp +11 -1
- casadi/include/casadi/core/serializing_stream.hpp +12 -0
- casadi/include/casadi/core/sparsity.hpp +5 -3
- casadi/include/casadi/core/tools.hpp +67 -0
- casadi/include/casadi/doc.i +1457 -825
- casadi/include/casadi/doc_merged.i +1089 -570
- casadi/include/coin/BonArraysHelpers.hpp +52 -0
- casadi/include/coin/BonAuxInfos.hpp +110 -0
- casadi/include/coin/BonBabInfos.hpp +57 -0
- casadi/include/coin/BonBabSetupBase.hpp +386 -0
- casadi/include/coin/BonBonminSetup.hpp +95 -0
- casadi/include/coin/BonBranchingTQP.hpp +197 -0
- casadi/include/coin/BonCbc.hpp +127 -0
- casadi/include/coin/BonCbcLpStrategy.hpp +45 -0
- casadi/include/coin/BonCbcNlpStrategy.hpp +98 -0
- casadi/include/coin/BonCbcNode.hpp +133 -0
- casadi/include/coin/BonChooseVariable.hpp +345 -0
- casadi/include/coin/BonCurvBranchingSolver.hpp +77 -0
- casadi/include/coin/BonCutStrengthener.hpp +244 -0
- casadi/include/coin/BonDiver.hpp +424 -0
- casadi/include/coin/BonDummyHeuristic.hpp +53 -0
- casadi/include/coin/BonDummyPump.hpp +43 -0
- casadi/include/coin/BonEcpCuts.hpp +97 -0
- casadi/include/coin/BonExitCodes.hpp +12 -0
- casadi/include/coin/BonFixAndSolveHeuristic.hpp +43 -0
- casadi/include/coin/BonGuessHeuristic.hpp +46 -0
- casadi/include/coin/BonHeuristicDive.hpp +88 -0
- casadi/include/coin/BonHeuristicDiveFractional.hpp +67 -0
- casadi/include/coin/BonHeuristicDiveMIP.hpp +83 -0
- casadi/include/coin/BonHeuristicDiveMIPFractional.hpp +67 -0
- casadi/include/coin/BonHeuristicDiveMIPVectorLength.hpp +74 -0
- casadi/include/coin/BonHeuristicDiveVectorLength.hpp +74 -0
- casadi/include/coin/BonHeuristicFPump.hpp +111 -0
- casadi/include/coin/BonHeuristicLocalBranching.hpp +59 -0
- casadi/include/coin/BonHeuristicRINS.hpp +55 -0
- casadi/include/coin/BonIpoptInteriorWarmStarter.hpp +103 -0
- casadi/include/coin/BonIpoptSolver.hpp +188 -0
- casadi/include/coin/BonIpoptWarmStart.hpp +148 -0
- casadi/include/coin/BonLinearCutsGenerator.hpp +75 -0
- casadi/include/coin/BonLocalSolverBasedHeuristic.hpp +102 -0
- casadi/include/coin/BonLpBranchingSolver.hpp +80 -0
- casadi/include/coin/BonMilpRounding.hpp +74 -0
- casadi/include/coin/BonOACutGenerator2.hpp +56 -0
- casadi/include/coin/BonOAMessages.hpp +44 -0
- casadi/include/coin/BonOaDecBase.hpp +297 -0
- casadi/include/coin/BonOaFeasChecker.hpp +73 -0
- casadi/include/coin/BonOaNlpOptim.hpp +116 -0
- casadi/include/coin/BonOsiTMINLPInterface.hpp +1342 -0
- casadi/include/coin/BonOuterApprox.hpp +123 -0
- casadi/include/coin/BonPseudoCosts.hpp +91 -0
- casadi/include/coin/BonPumpForMinlp.hpp +45 -0
- casadi/include/coin/BonQuadCut.hpp +217 -0
- casadi/include/coin/BonQuadRow.hpp +122 -0
- casadi/include/coin/BonRegisteredOptions.hpp +225 -0
- casadi/include/coin/BonStrongBranchingSolver.hpp +69 -0
- casadi/include/coin/BonSubMipSolver.hpp +143 -0
- casadi/include/coin/BonTMINLP.hpp +420 -0
- casadi/include/coin/BonTMINLP2OsiLP.hpp +164 -0
- casadi/include/coin/BonTMINLP2Quad.hpp +191 -0
- casadi/include/coin/BonTMINLP2TNLP.hpp +509 -0
- casadi/include/coin/BonTMINLPLinObj.hpp +216 -0
- casadi/include/coin/BonTMatrix.hpp +167 -0
- casadi/include/coin/BonTNLP2FPNLP.hpp +264 -0
- casadi/include/coin/BonTNLPSolver.hpp +241 -0
- casadi/include/coin/BonTypes.hpp +95 -0
- casadi/include/coin/BonminConfig.h +19 -0
- casadi/include/coin/CbcBranchActual.hpp +26 -0
- casadi/include/coin/CbcBranchAllDifferent.hpp +61 -0
- casadi/include/coin/CbcBranchBase.hpp +79 -0
- casadi/include/coin/CbcBranchCut.hpp +182 -0
- casadi/include/coin/CbcBranchDecision.hpp +135 -0
- casadi/include/coin/CbcBranchDefaultDecision.hpp +101 -0
- casadi/include/coin/CbcBranchDynamic.hpp +210 -0
- casadi/include/coin/CbcBranchLotsize.hpp +249 -0
- casadi/include/coin/CbcBranchToFixLots.hpp +94 -0
- casadi/include/coin/CbcBranchingObject.hpp +245 -0
- casadi/include/coin/CbcClique.hpp +309 -0
- casadi/include/coin/CbcCompare.hpp +46 -0
- casadi/include/coin/CbcCompareActual.hpp +16 -0
- casadi/include/coin/CbcCompareBase.hpp +155 -0
- casadi/include/coin/CbcCompareDefault.hpp +129 -0
- casadi/include/coin/CbcCompareDepth.hpp +48 -0
- casadi/include/coin/CbcCompareEstimate.hpp +48 -0
- casadi/include/coin/CbcCompareObjective.hpp +50 -0
- casadi/include/coin/CbcConfig.h +18 -0
- casadi/include/coin/CbcConsequence.hpp +50 -0
- casadi/include/coin/CbcCountRowCut.hpp +176 -0
- casadi/include/coin/CbcCutGenerator.hpp +550 -0
- casadi/include/coin/CbcCutModifier.hpp +59 -0
- casadi/include/coin/CbcCutSubsetModifier.hpp +69 -0
- casadi/include/coin/CbcDummyBranchingObject.hpp +83 -0
- casadi/include/coin/CbcEventHandler.hpp +250 -0
- casadi/include/coin/CbcFathom.hpp +136 -0
- casadi/include/coin/CbcFathomDynamicProgramming.hpp +177 -0
- casadi/include/coin/CbcFeasibilityBase.hpp +60 -0
- casadi/include/coin/CbcFixVariable.hpp +68 -0
- casadi/include/coin/CbcFollowOn.hpp +207 -0
- casadi/include/coin/CbcFullNodeInfo.hpp +171 -0
- casadi/include/coin/CbcGeneral.hpp +60 -0
- casadi/include/coin/CbcGeneralDepth.hpp +289 -0
- casadi/include/coin/CbcHeuristic.hpp +735 -0
- casadi/include/coin/CbcHeuristicDINS.hpp +98 -0
- casadi/include/coin/CbcHeuristicDW.hpp +374 -0
- casadi/include/coin/CbcHeuristicDive.hpp +198 -0
- casadi/include/coin/CbcHeuristicDiveCoefficient.hpp +52 -0
- casadi/include/coin/CbcHeuristicDiveFractional.hpp +52 -0
- casadi/include/coin/CbcHeuristicDiveGuided.hpp +55 -0
- casadi/include/coin/CbcHeuristicDiveLineSearch.hpp +52 -0
- casadi/include/coin/CbcHeuristicDivePseudoCost.hpp +60 -0
- casadi/include/coin/CbcHeuristicDiveVectorLength.hpp +52 -0
- casadi/include/coin/CbcHeuristicFPump.hpp +375 -0
- casadi/include/coin/CbcHeuristicGreedy.hpp +289 -0
- casadi/include/coin/CbcHeuristicLocal.hpp +276 -0
- casadi/include/coin/CbcHeuristicPivotAndFix.hpp +58 -0
- casadi/include/coin/CbcHeuristicRENS.hpp +79 -0
- casadi/include/coin/CbcHeuristicRINS.hpp +106 -0
- casadi/include/coin/CbcHeuristicRandRound.hpp +58 -0
- casadi/include/coin/CbcHeuristicVND.hpp +95 -0
- casadi/include/coin/CbcLinked.hpp +1443 -0
- casadi/include/coin/CbcMessage.hpp +94 -0
- casadi/include/coin/CbcMipStartIO.hpp +29 -0
- casadi/include/coin/CbcModel.hpp +3296 -0
- casadi/include/coin/CbcNWay.hpp +171 -0
- casadi/include/coin/CbcNode.hpp +380 -0
- casadi/include/coin/CbcNodeInfo.hpp +377 -0
- casadi/include/coin/CbcObject.hpp +288 -0
- casadi/include/coin/CbcObjectUpdateData.hpp +63 -0
- casadi/include/coin/CbcOrClpParam.cpp +4321 -0
- casadi/include/coin/CbcOrClpParam.hpp +585 -0
- casadi/include/coin/CbcParam.hpp +338 -0
- casadi/include/coin/CbcPartialNodeInfo.hpp +116 -0
- casadi/include/coin/CbcSOS.hpp +290 -0
- casadi/include/coin/CbcSimpleInteger.hpp +299 -0
- casadi/include/coin/CbcSimpleIntegerDynamicPseudoCost.hpp +619 -0
- casadi/include/coin/CbcSimpleIntegerPseudoCost.hpp +122 -0
- casadi/include/coin/CbcSolver.hpp +460 -0
- casadi/include/coin/CbcStrategy.hpp +269 -0
- casadi/include/coin/CbcSubProblem.hpp +84 -0
- casadi/include/coin/CbcTree.hpp +493 -0
- casadi/include/coin/CbcTreeLocal.hpp +393 -0
- casadi/include/coin/Cbc_C_Interface.h +904 -0
- casadi/include/coin/Cgl012cut.hpp +464 -0
- casadi/include/coin/CglAllDifferent.hpp +115 -0
- casadi/include/coin/CglClique.hpp +312 -0
- casadi/include/coin/CglConfig.h +19 -0
- casadi/include/coin/CglCutGenerator.hpp +133 -0
- casadi/include/coin/CglDuplicateRow.hpp +189 -0
- casadi/include/coin/CglFlowCover.hpp +371 -0
- casadi/include/coin/CglGMI.hpp +364 -0
- casadi/include/coin/CglGMIParam.hpp +313 -0
- casadi/include/coin/CglGomory.hpp +204 -0
- casadi/include/coin/CglKnapsackCover.hpp +310 -0
- casadi/include/coin/CglLandP.hpp +306 -0
- casadi/include/coin/CglLandPValidator.hpp +130 -0
- casadi/include/coin/CglLiftAndProject.hpp +104 -0
- casadi/include/coin/CglMessage.hpp +49 -0
- casadi/include/coin/CglMixedIntegerRounding.hpp +429 -0
- casadi/include/coin/CglMixedIntegerRounding2.hpp +427 -0
- casadi/include/coin/CglOddHole.hpp +160 -0
- casadi/include/coin/CglParam.hpp +93 -0
- casadi/include/coin/CglPreProcess.hpp +600 -0
- casadi/include/coin/CglProbing.hpp +543 -0
- casadi/include/coin/CglRedSplit.hpp +448 -0
- casadi/include/coin/CglRedSplit2.hpp +494 -0
- casadi/include/coin/CglRedSplit2Param.hpp +495 -0
- casadi/include/coin/CglRedSplitParam.hpp +272 -0
- casadi/include/coin/CglResidualCapacity.hpp +240 -0
- casadi/include/coin/CglSimpleRounding.hpp +174 -0
- casadi/include/coin/CglStored.hpp +140 -0
- casadi/include/coin/CglTreeInfo.hpp +216 -0
- casadi/include/coin/CglTwomir.hpp +562 -0
- casadi/include/coin/CglZeroHalf.hpp +133 -0
- casadi/include/coin/ClpAmplObjective.hpp +113 -0
- casadi/include/coin/ClpCholeskyBase.hpp +321 -0
- casadi/include/coin/ClpCholeskyDense.hpp +157 -0
- casadi/include/coin/ClpCholeskyMumps.hpp +65 -0
- casadi/include/coin/ClpCholeskyPardiso.hpp +67 -0
- casadi/include/coin/ClpConfig.h +17 -0
- casadi/include/coin/ClpConstraint.hpp +129 -0
- casadi/include/coin/ClpConstraintAmpl.hpp +109 -0
- casadi/include/coin/ClpConstraintLinear.hpp +113 -0
- casadi/include/coin/ClpConstraintQuadratic.hpp +123 -0
- casadi/include/coin/ClpDualRowDantzig.hpp +72 -0
- casadi/include/coin/ClpDualRowPivot.hpp +136 -0
- casadi/include/coin/ClpDualRowSteepest.hpp +160 -0
- casadi/include/coin/ClpDummyMatrix.hpp +186 -0
- casadi/include/coin/ClpDynamicExampleMatrix.hpp +199 -0
- casadi/include/coin/ClpDynamicMatrix.hpp +420 -0
- casadi/include/coin/ClpEventHandler.hpp +193 -0
- casadi/include/coin/ClpFactorization.hpp +556 -0
- casadi/include/coin/ClpGubDynamicMatrix.hpp +270 -0
- casadi/include/coin/ClpGubMatrix.hpp +373 -0
- casadi/include/coin/ClpInterior.hpp +622 -0
- casadi/include/coin/ClpLinearObjective.hpp +104 -0
- casadi/include/coin/ClpMatrixBase.hpp +561 -0
- casadi/include/coin/ClpMessage.hpp +131 -0
- casadi/include/coin/ClpModel.hpp +1442 -0
- casadi/include/coin/ClpNetworkMatrix.hpp +235 -0
- casadi/include/coin/ClpNode.hpp +364 -0
- casadi/include/coin/ClpNonLinearCost.hpp +432 -0
- casadi/include/coin/ClpObjective.hpp +142 -0
- casadi/include/coin/ClpPEDualRowDantzig.hpp +84 -0
- casadi/include/coin/ClpPEDualRowSteepest.hpp +100 -0
- casadi/include/coin/ClpPEPrimalColumnDantzig.hpp +71 -0
- casadi/include/coin/ClpPEPrimalColumnSteepest.hpp +107 -0
- casadi/include/coin/ClpPESimplex.hpp +231 -0
- casadi/include/coin/ClpPackedMatrix.hpp +778 -0
- casadi/include/coin/ClpParameters.hpp +132 -0
- casadi/include/coin/ClpPdcoBase.hpp +110 -0
- casadi/include/coin/ClpPlusMinusOneMatrix.hpp +565 -0
- casadi/include/coin/ClpPresolve.hpp +379 -0
- casadi/include/coin/ClpPrimalColumnDantzig.hpp +74 -0
- casadi/include/coin/ClpPrimalColumnPivot.hpp +163 -0
- casadi/include/coin/ClpPrimalColumnSteepest.hpp +281 -0
- casadi/include/coin/ClpQuadraticObjective.hpp +161 -0
- casadi/include/coin/ClpSimplex.hpp +2137 -0
- casadi/include/coin/ClpSimplexDual.hpp +304 -0
- casadi/include/coin/ClpSimplexNonlinear.hpp +117 -0
- casadi/include/coin/ClpSimplexOther.hpp +282 -0
- casadi/include/coin/ClpSimplexPrimal.hpp +244 -0
- casadi/include/coin/ClpSolve.hpp +505 -0
- casadi/include/coin/Clp_C_Interface.h +554 -0
- casadi/include/coin/CoinAlloc.hpp +179 -0
- casadi/include/coin/CoinBuild.hpp +159 -0
- casadi/include/coin/CoinDenseFactorization.hpp +452 -0
- casadi/include/coin/CoinDenseVector.hpp +401 -0
- casadi/include/coin/CoinDistance.hpp +51 -0
- casadi/include/coin/CoinError.hpp +274 -0
- casadi/include/coin/CoinFactorization.hpp +2178 -0
- casadi/include/coin/CoinFileIO.hpp +185 -0
- casadi/include/coin/CoinFinite.hpp +37 -0
- casadi/include/coin/CoinFloatEqual.hpp +204 -0
- casadi/include/coin/CoinHelperFunctions.hpp +1270 -0
- casadi/include/coin/CoinIndexedVector.hpp +1437 -0
- casadi/include/coin/CoinLpIO.hpp +836 -0
- casadi/include/coin/CoinMessage.hpp +95 -0
- casadi/include/coin/CoinMessageHandler.hpp +717 -0
- casadi/include/coin/CoinModel.hpp +1214 -0
- casadi/include/coin/CoinModelUseful.hpp +518 -0
- casadi/include/coin/CoinMpsIO.hpp +1142 -0
- casadi/include/coin/CoinOslFactorization.hpp +287 -0
- casadi/include/coin/CoinPackedMatrix.hpp +956 -0
- casadi/include/coin/CoinPackedVector.hpp +670 -0
- casadi/include/coin/CoinPackedVectorBase.hpp +274 -0
- casadi/include/coin/CoinParam.hpp +644 -0
- casadi/include/coin/CoinPragma.hpp +29 -0
- casadi/include/coin/CoinPresolveDoubleton.hpp +76 -0
- casadi/include/coin/CoinPresolveDual.hpp +84 -0
- casadi/include/coin/CoinPresolveDupcol.hpp +259 -0
- casadi/include/coin/CoinPresolveEmpty.hpp +120 -0
- casadi/include/coin/CoinPresolveFixed.hpp +185 -0
- casadi/include/coin/CoinPresolveForcing.hpp +69 -0
- casadi/include/coin/CoinPresolveImpliedFree.hpp +66 -0
- casadi/include/coin/CoinPresolveIsolated.hpp +59 -0
- casadi/include/coin/CoinPresolveMatrix.hpp +1996 -0
- casadi/include/coin/CoinPresolveMonitor.hpp +105 -0
- casadi/include/coin/CoinPresolvePsdebug.hpp +169 -0
- casadi/include/coin/CoinPresolveSingleton.hpp +115 -0
- casadi/include/coin/CoinPresolveSubst.hpp +103 -0
- casadi/include/coin/CoinPresolveTighten.hpp +58 -0
- casadi/include/coin/CoinPresolveTripleton.hpp +69 -0
- casadi/include/coin/CoinPresolveUseless.hpp +63 -0
- casadi/include/coin/CoinPresolveZeros.hpp +65 -0
- casadi/include/coin/CoinRational.hpp +43 -0
- casadi/include/coin/CoinSearchTree.hpp +523 -0
- casadi/include/coin/CoinShallowPackedVector.hpp +149 -0
- casadi/include/coin/CoinSignal.hpp +127 -0
- casadi/include/coin/CoinSimpFactorization.hpp +432 -0
- casadi/include/coin/CoinSmartPtr.hpp +548 -0
- casadi/include/coin/CoinSnapshot.hpp +572 -0
- casadi/include/coin/CoinSort.hpp +753 -0
- casadi/include/coin/CoinStructuredModel.hpp +270 -0
- casadi/include/coin/CoinTime.hpp +350 -0
- casadi/include/coin/CoinTypes.hpp +67 -0
- casadi/include/coin/CoinUtility.hpp +26 -0
- casadi/include/coin/CoinUtilsConfig.h +34 -0
- casadi/include/coin/CoinWarmStart.hpp +56 -0
- casadi/include/coin/CoinWarmStartBasis.hpp +468 -0
- casadi/include/coin/CoinWarmStartDual.hpp +180 -0
- casadi/include/coin/CoinWarmStartPrimalDual.hpp +233 -0
- casadi/include/coin/CoinWarmStartVector.hpp +523 -0
- casadi/include/coin/Coin_C_defines.h +149 -0
- casadi/include/coin/Idiot.hpp +327 -0
- casadi/include/coin/OsiAuxInfo.hpp +261 -0
- casadi/include/coin/OsiBranchingObject.hpp +1097 -0
- casadi/include/coin/OsiCbcSolverInterface.hpp +791 -0
- casadi/include/coin/OsiChooseVariable.hpp +645 -0
- casadi/include/coin/OsiClpSolverInterface.hpp +1604 -0
- casadi/include/coin/OsiColCut.hpp +322 -0
- casadi/include/coin/OsiCollections.hpp +34 -0
- casadi/include/coin/OsiConfig.h +19 -0
- casadi/include/coin/OsiCut.hpp +251 -0
- casadi/include/coin/OsiCuts.hpp +505 -0
- casadi/include/coin/OsiPresolve.hpp +272 -0
- casadi/include/coin/OsiRowCut.hpp +345 -0
- casadi/include/coin/OsiRowCutDebugger.hpp +190 -0
- casadi/include/coin/OsiSolverBranch.hpp +169 -0
- casadi/include/coin/OsiSolverInterface.hpp +2221 -0
- casadi/include/coin/OsiSolverParameters.hpp +144 -0
- casadi/include/coin/OsiUnitTests.hpp +390 -0
- casadi/include/coin-or/IpAlgBuilder.hpp +417 -0
- casadi/include/coin-or/IpAlgStrategy.hpp +201 -0
- casadi/include/coin-or/IpAlgTypes.hpp +64 -0
- casadi/include/coin-or/IpAugSystemSolver.hpp +212 -0
- casadi/include/coin-or/IpBlas.hpp +426 -0
- casadi/include/coin-or/IpCachedResults.hpp +897 -0
- casadi/include/coin-or/IpCompoundMatrix.hpp +423 -0
- casadi/include/coin-or/IpCompoundSymMatrix.hpp +348 -0
- casadi/include/coin-or/IpCompoundVector.hpp +395 -0
- casadi/include/coin-or/IpConvCheck.hpp +97 -0
- casadi/include/coin-or/IpDebug.hpp +167 -0
- casadi/include/coin-or/IpDenseVector.hpp +626 -0
- casadi/include/coin-or/IpDiagMatrix.hpp +158 -0
- casadi/include/coin-or/IpEqMultCalculator.hpp +76 -0
- casadi/include/coin-or/IpException.hpp +156 -0
- casadi/include/coin-or/IpExpansionMatrix.hpp +245 -0
- casadi/include/coin-or/IpGenTMatrix.hpp +290 -0
- casadi/include/coin-or/IpHessianUpdater.hpp +73 -0
- casadi/include/coin-or/IpIdentityMatrix.hpp +167 -0
- casadi/include/coin-or/IpIpoptAlg.hpp +257 -0
- casadi/include/coin-or/IpIpoptApplication.hpp +367 -0
- casadi/include/coin-or/IpIpoptCalculatedQuantities.hpp +1009 -0
- casadi/include/coin-or/IpIpoptData.hpp +966 -0
- casadi/include/coin-or/IpIpoptNLP.hpp +328 -0
- casadi/include/coin-or/IpIterateInitializer.hpp +68 -0
- casadi/include/coin-or/IpIteratesVector.hpp +840 -0
- casadi/include/coin-or/IpIterationOutput.hpp +78 -0
- casadi/include/coin-or/IpJournalist.hpp +573 -0
- casadi/include/coin-or/IpLapack.hpp +227 -0
- casadi/include/coin-or/IpLibraryLoader.hpp +76 -0
- casadi/include/coin-or/IpLineSearch.hpp +106 -0
- casadi/include/coin-or/IpLinearSolvers.h +46 -0
- casadi/include/coin-or/IpMatrix.hpp +434 -0
- casadi/include/coin-or/IpMuUpdate.hpp +77 -0
- casadi/include/coin-or/IpNLP.hpp +306 -0
- casadi/include/coin-or/IpNLPScaling.hpp +582 -0
- casadi/include/coin-or/IpObserver.hpp +422 -0
- casadi/include/coin-or/IpOptionsList.hpp +412 -0
- casadi/include/coin-or/IpOrigIpoptNLP.hpp +603 -0
- casadi/include/coin-or/IpPDSystemSolver.hpp +137 -0
- casadi/include/coin-or/IpReferenced.hpp +262 -0
- casadi/include/coin-or/IpRegOptions.hpp +1152 -0
- casadi/include/coin-or/IpReturnCodes.h +23 -0
- casadi/include/coin-or/IpReturnCodes.hpp +18 -0
- casadi/include/coin-or/IpReturnCodes.inc +71 -0
- casadi/include/coin-or/IpReturnCodes_inc.h +45 -0
- casadi/include/coin-or/IpScaledMatrix.hpp +291 -0
- casadi/include/coin-or/IpSearchDirCalculator.hpp +72 -0
- casadi/include/coin-or/IpSmartPtr.hpp +865 -0
- casadi/include/coin-or/IpSolveStatistics.hpp +210 -0
- casadi/include/coin-or/IpSparseSymLinearSolverInterface.hpp +260 -0
- casadi/include/coin-or/IpStdAugSystemSolver.cpp +555 -0
- casadi/include/coin-or/IpStdCInterface.h +428 -0
- casadi/include/coin-or/IpSumSymMatrix.hpp +186 -0
- casadi/include/coin-or/IpSymLinearSolver.hpp +141 -0
- casadi/include/coin-or/IpSymMatrix.hpp +167 -0
- casadi/include/coin-or/IpSymScaledMatrix.hpp +255 -0
- casadi/include/coin-or/IpSymTMatrix.hpp +275 -0
- casadi/include/coin-or/IpTNLP.hpp +820 -0
- casadi/include/coin-or/IpTNLPAdapter.hpp +648 -0
- casadi/include/coin-or/IpTNLPReducer.hpp +274 -0
- casadi/include/coin-or/IpTaggedObject.hpp +128 -0
- casadi/include/coin-or/IpTimedTask.hpp +218 -0
- casadi/include/coin-or/IpTimingStatistics.hpp +323 -0
- casadi/include/coin-or/IpTripletHelper.hpp +308 -0
- casadi/include/coin-or/IpTypes.h +81 -0
- casadi/include/coin-or/IpTypes.hpp +30 -0
- casadi/include/coin-or/IpUtils.hpp +166 -0
- casadi/include/coin-or/IpVector.hpp +892 -0
- casadi/include/coin-or/IpZeroSymMatrix.hpp +155 -0
- casadi/include/coin-or/IpoptConfig.h +45 -0
- casadi/include/coin-or/SensAlgorithm.hpp +114 -0
- casadi/include/coin-or/SensApplication.hpp +188 -0
- casadi/include/coin-or/SensBacksolver.hpp +36 -0
- casadi/include/coin-or/SensMeasurement.hpp +56 -0
- casadi/include/coin-or/SensPCalculator.hpp +137 -0
- casadi/include/coin-or/SensRegOp.hpp +21 -0
- casadi/include/coin-or/SensSchurData.hpp +182 -0
- casadi/include/coin-or/SensSchurDriver.hpp +118 -0
- casadi/include/coin-or/SensSimpleBacksolver.hpp +49 -0
- casadi/include/coin-or/SensStepCalc.hpp +85 -0
- casadi/include/coin-or/SensUtils.hpp +63 -0
- casadi/include/coin-or/metis/defs.h +161 -0
- casadi/include/coin-or/metis/macros.h +143 -0
- casadi/include/coin-or/metis/metis.h +37 -0
- casadi/include/coin-or/metis/proto.h +505 -0
- casadi/include/coin-or/metis/rename.h +418 -0
- casadi/include/coin-or/metis/struct.h +251 -0
- casadi/include/coin-or/mumps/dmumps_c.h +142 -0
- casadi/include/coin-or/mumps/mumps_c_types.h +72 -0
- casadi/include/coin-or/mumps/mumps_compat.h +27 -0
- casadi/include/coin-or/mumps/mumps_int_def.h +11 -0
- casadi/include/coin-or/mumps/mumps_mpi.h +67 -0
- casadi/include/d_blas.h +78 -0
- casadi/include/d_blas_64.h +73 -0
- casadi/include/openblas/cblas.h +411 -0
- casadi/include/openblas/f77blas.h +796 -0
- casadi/include/openblas/lapack.h +22997 -0
- casadi/include/openblas/lapacke.h +12665 -0
- casadi/include/openblas/lapacke_config.h +119 -0
- casadi/include/openblas/lapacke_example_aux.h +9 -0
- casadi/include/openblas/lapacke_mangling.h +17 -0
- casadi/include/openblas/lapacke_utils.h +582 -0
- casadi/include/openblas/openblas/lapacke_mangling.h +17 -0
- casadi/include/openblas/openblas_config.h +139 -0
- casadi/include/qdldl/qdldl.h +169 -0
- casadi/include/qdldl/qdldl_types.h +23 -0
- casadi/include/s_blas.h +78 -0
- casadi/include/s_blas_64.h +73 -0
- casadi/lib64/libtinyxml2.a +0 -0
- casadi/libCbc.la +3 -3
- casadi/libCbc.so +0 -0
- casadi/libCbc.so.3 +0 -0
- casadi/libCbc.so.3.10.11 +0 -0
- casadi/libCbcSolver.la +3 -3
- casadi/libCbcSolver.so +0 -0
- casadi/libCbcSolver.so.3 +0 -0
- casadi/libCbcSolver.so.3.10.11 +0 -0
- casadi/libCgl.la +2 -2
- casadi/libCgl.so +0 -0
- casadi/libCgl.so.1 +0 -0
- casadi/libCgl.so.1.10.8 +0 -0
- casadi/libClp.la +2 -2
- casadi/libClp.so +0 -0
- casadi/libClp.so.1 +0 -0
- casadi/libClp.so.1.14.9 +0 -0
- casadi/libClpSolver.la +2 -2
- casadi/libClpSolver.so +0 -0
- casadi/libClpSolver.so.1 +0 -0
- casadi/{libClpSolver.so.1.14.7 → libClpSolver.so.1.14.9} +0 -0
- casadi/libCoinUtils.la +2 -2
- casadi/libCoinUtils.so +0 -0
- casadi/libCoinUtils.so.3 +0 -0
- casadi/libCoinUtils.so.3.11.10 +0 -0
- casadi/libOsi.la +2 -2
- casadi/libOsiCbc.la +3 -3
- casadi/libOsiCbc.so +0 -0
- casadi/libOsiCbc.so.3 +0 -0
- casadi/{libOsiCbc.so.3.10.6 → libOsiCbc.so.3.10.11} +0 -0
- casadi/libOsiClp.la +2 -2
- casadi/libOsiClp.so +0 -0
- casadi/libOsiClp.so.1 +0 -0
- casadi/libOsiClp.so.1.14.9 +0 -0
- casadi/libOsiCommonTests.la +2 -2
- casadi/libOsiCommonTests.so +0 -0
- casadi/libOsiCommonTests.so.1 +0 -0
- casadi/{libOsiCommonTests.so.1.13.7 → libOsiCommonTests.so.1.13.9} +0 -0
- casadi/libbonmin.la +3 -3
- casadi/libbonmin.so +0 -0
- casadi/libbonmin.so.4 +0 -0
- casadi/libbonmin.so.4.8.9 +0 -0
- casadi/libcasadi.so +0 -0
- casadi/libcasadi.so.3.7 +0 -0
- casadi/libcasadi_conic_cbc.so +0 -0
- casadi/libcasadi_conic_cbc.so.3.7 +0 -0
- casadi/libcasadi_conic_clp.so +0 -0
- casadi/libcasadi_conic_clp.so.3.7 +0 -0
- casadi/libcasadi_conic_cplex.so +0 -0
- casadi/libcasadi_conic_cplex.so.3.7 +0 -0
- casadi/libcasadi_conic_gurobi.so +0 -0
- casadi/libcasadi_conic_gurobi.so.3.7 +0 -0
- casadi/libcasadi_conic_hpipm.so +0 -0
- casadi/libcasadi_conic_hpipm.so.3.7 +0 -0
- casadi/libcasadi_conic_ipqp.so +0 -0
- casadi/libcasadi_conic_ipqp.so.3.7 +0 -0
- casadi/libcasadi_conic_nlpsol.so +0 -0
- casadi/libcasadi_conic_nlpsol.so.3.7 +0 -0
- casadi/libcasadi_conic_osqp.so +0 -0
- casadi/libcasadi_conic_osqp.so.3.7 +0 -0
- casadi/libcasadi_conic_qpoases.so +0 -0
- casadi/libcasadi_conic_qpoases.so.3.7 +0 -0
- casadi/libcasadi_conic_qrqp.so +0 -0
- casadi/libcasadi_conic_qrqp.so.3.7 +0 -0
- casadi/libcasadi_conic_superscs.so +0 -0
- casadi/libcasadi_conic_superscs.so.3.7 +0 -0
- casadi/libcasadi_integrator_collocation.so +0 -0
- casadi/libcasadi_integrator_collocation.so.3.7 +0 -0
- casadi/libcasadi_integrator_cvodes.so +0 -0
- casadi/libcasadi_integrator_cvodes.so.3.7 +0 -0
- casadi/libcasadi_integrator_idas.so +0 -0
- casadi/libcasadi_integrator_idas.so.3.7 +0 -0
- casadi/libcasadi_interpolant_bspline.so +0 -0
- casadi/libcasadi_interpolant_bspline.so.3.7 +0 -0
- casadi/libcasadi_interpolant_linear.so +0 -0
- casadi/libcasadi_interpolant_linear.so.3.7 +0 -0
- casadi/libcasadi_linsol_lapacklu.so +0 -0
- casadi/libcasadi_linsol_lapacklu.so.3.7 +0 -0
- casadi/libcasadi_linsol_lapackqr.so +0 -0
- casadi/libcasadi_linsol_lapackqr.so.3.7 +0 -0
- casadi/libcasadi_linsol_ldl.so +0 -0
- casadi/libcasadi_linsol_ldl.so.3.7 +0 -0
- casadi/libcasadi_linsol_mumps.so +0 -0
- casadi/libcasadi_linsol_mumps.so.3.7 +0 -0
- casadi/libcasadi_linsol_qr.so +0 -0
- casadi/libcasadi_linsol_qr.so.3.7 +0 -0
- casadi/libcasadi_linsol_symbolicqr.so +0 -0
- casadi/libcasadi_linsol_symbolicqr.so.3.7 +0 -0
- casadi/libcasadi_nlpsol_ampl.so +0 -0
- casadi/libcasadi_nlpsol_ampl.so.3.7 +0 -0
- casadi/libcasadi_nlpsol_blocksqp.so +0 -0
- casadi/libcasadi_nlpsol_blocksqp.so.3.7 +0 -0
- casadi/libcasadi_nlpsol_bonmin.so +0 -0
- casadi/libcasadi_nlpsol_bonmin.so.3.7 +0 -0
- casadi/libcasadi_nlpsol_feasiblesqpmethod.so +0 -0
- casadi/libcasadi_nlpsol_feasiblesqpmethod.so.3.7 +0 -0
- casadi/libcasadi_nlpsol_ipopt.so +0 -0
- casadi/libcasadi_nlpsol_ipopt.so.3.7 +0 -0
- casadi/libcasadi_nlpsol_knitro.so +0 -0
- casadi/libcasadi_nlpsol_knitro.so.3.7 +0 -0
- casadi/libcasadi_nlpsol_qrsqp.so +0 -0
- casadi/libcasadi_nlpsol_qrsqp.so.3.7 +0 -0
- casadi/libcasadi_nlpsol_scpgen.so +0 -0
- casadi/libcasadi_nlpsol_scpgen.so.3.7 +0 -0
- casadi/libcasadi_nlpsol_snopt.so +0 -0
- casadi/libcasadi_nlpsol_snopt.so.3.7 +0 -0
- casadi/libcasadi_nlpsol_sqpmethod.so +0 -0
- casadi/libcasadi_nlpsol_sqpmethod.so.3.7 +0 -0
- casadi/libcasadi_nlpsol_worhp.so +0 -0
- casadi/libcasadi_nlpsol_worhp.so.3.7 +0 -0
- casadi/libcasadi_rootfinder_fast_newton.so +0 -0
- casadi/libcasadi_rootfinder_fast_newton.so.3.7 +0 -0
- casadi/libcasadi_rootfinder_newton.so +0 -0
- casadi/libcasadi_rootfinder_newton.so.3.7 +0 -0
- casadi/libcasadi_sundials_common.so +0 -0
- casadi/libcasadi_sundials_common.so.3.7 +0 -0
- casadi/libindirect.a +0 -0
- casadi/liblinsys.a +0 -0
- casadi/libosqp.a +0 -0
- casadi/libqdldl.a +0 -0
- casadi/libsuperscs.a +0 -0
- casadi/pkgconfig/blas.pc +11 -0
- casadi/pkgconfig/bonmin.pc +1 -1
- casadi/pkgconfig/casadi.pc +1 -1
- casadi/pkgconfig/cbc.pc +2 -2
- casadi/pkgconfig/cgl.pc +2 -2
- casadi/pkgconfig/clp.pc +1 -1
- casadi/pkgconfig/coinutils.pc +1 -1
- casadi/pkgconfig/lapack.pc +11 -0
- casadi/pkgconfig/openblas.pc +1 -1
- casadi/pkgconfig/osi-cbc.pc +1 -1
- casadi/pkgconfig/osi-clp.pc +1 -1
- casadi/pkgconfig/osi-unittests.pc +1 -1
- casadi/pkgconfig/osi.pc +1 -1
- {casadi-3.6.3.dist-info → casadi-3.6.5.dist-info}/METADATA +11 -3
- casadi-3.6.5.dist-info/RECORD +987 -0
- casadi/libCbc.so.3.10.6 +0 -0
- casadi/libCbcSolver.so.3.10.6 +0 -0
- casadi/libCgl.so.1.10.4 +0 -0
- casadi/libClp.so.1.14.7 +0 -0
- casadi/libCoinUtils.so.3.11.6 +0 -0
- casadi/libOsiClp.so.1.14.7 +0 -0
- casadi/libbonmin.so.4.8.8 +0 -0
- casadi-3.6.3.dist-info/RECORD +0 -581
- /casadi/{libOsi.so.1.13.7 → libOsi.so.1.13.9} +0 -0
- {casadi-3.6.3.dist-info → casadi-3.6.5.dist-info}/WHEEL +0 -0
casadi/casadi.py
CHANGED
@@ -1233,10 +1233,10 @@ class GenericType(PrintableCommon):
|
|
1233
1233
|
Extra doc: https://github.com/casadi/casadi/wiki/L_17r
|
1234
1234
|
|
1235
1235
|
Doc source:
|
1236
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/generic_type.hpp#
|
1236
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/generic_type.hpp#L249
|
1237
1237
|
|
1238
1238
|
Implementation:
|
1239
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/generic_type.cpp#
|
1239
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/generic_type.cpp#L737-L740
|
1240
1240
|
|
1241
1241
|
|
1242
1242
|
|
@@ -1293,10 +1293,10 @@ class GenericType(PrintableCommon):
|
|
1293
1293
|
Default constructor.
|
1294
1294
|
|
1295
1295
|
Doc source:
|
1296
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/generic_type.hpp#
|
1296
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/generic_type.hpp#L85
|
1297
1297
|
|
1298
1298
|
Implementation:
|
1299
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/generic_type.cpp#
|
1299
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/generic_type.cpp#L249-L250
|
1300
1300
|
|
1301
1301
|
|
1302
1302
|
|
@@ -3370,20 +3370,6 @@ def Sparsity_kkt(*args) -> "casadi::Sparsity":
|
|
3370
3370
|
return _casadi.Sparsity_kkt(*args)
|
3371
3371
|
|
3372
3372
|
|
3373
|
-
def hash_combine(*args) -> "void":
|
3374
|
-
"""
|
3375
|
-
|
3376
|
-
|
3377
|
-
::
|
3378
|
-
|
3379
|
-
hash_combine(std::size_t & seed, [int] v)
|
3380
|
-
hash_combine(std::size_t & seed, casadi_int const * v, std::size_t sz)
|
3381
|
-
|
3382
|
-
|
3383
|
-
|
3384
|
-
"""
|
3385
|
-
return _casadi.hash_combine(*args)
|
3386
|
-
|
3387
3373
|
def hash_sparsity(*args) -> "std::size_t":
|
3388
3374
|
"""
|
3389
3375
|
|
@@ -10258,7 +10244,7 @@ class DM(MatrixCommon, GenericExpressionCommon, GenDM, PrintableCommon):
|
|
10258
10244
|
Extra doc: https://github.com/casadi/casadi/wiki/L_19v
|
10259
10245
|
|
10260
10246
|
Doc source:
|
10261
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#
|
10247
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#L1100
|
10262
10248
|
|
10263
10249
|
|
10264
10250
|
|
@@ -10282,7 +10268,7 @@ class DM(MatrixCommon, GenericExpressionCommon, GenDM, PrintableCommon):
|
|
10282
10268
|
Extra doc: https://github.com/casadi/casadi/wiki/L_19w
|
10283
10269
|
|
10284
10270
|
Doc source:
|
10285
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#
|
10271
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#L1107
|
10286
10272
|
|
10287
10273
|
|
10288
10274
|
|
@@ -10306,7 +10292,7 @@ class DM(MatrixCommon, GenericExpressionCommon, GenDM, PrintableCommon):
|
|
10306
10292
|
Extra doc: https://github.com/casadi/casadi/wiki/L_19x
|
10307
10293
|
|
10308
10294
|
Doc source:
|
10309
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#
|
10295
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#L1112
|
10310
10296
|
|
10311
10297
|
|
10312
10298
|
|
@@ -10330,7 +10316,7 @@ class DM(MatrixCommon, GenericExpressionCommon, GenDM, PrintableCommon):
|
|
10330
10316
|
Extra doc: https://github.com/casadi/casadi/wiki/L_19y
|
10331
10317
|
|
10332
10318
|
Doc source:
|
10333
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#
|
10319
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#L1117
|
10334
10320
|
|
10335
10321
|
|
10336
10322
|
|
@@ -10354,7 +10340,7 @@ class DM(MatrixCommon, GenericExpressionCommon, GenDM, PrintableCommon):
|
|
10354
10340
|
Extra doc: https://github.com/casadi/casadi/wiki/L_19z
|
10355
10341
|
|
10356
10342
|
Doc source:
|
10357
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#
|
10343
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#L1122
|
10358
10344
|
|
10359
10345
|
|
10360
10346
|
|
@@ -10380,7 +10366,7 @@ class DM(MatrixCommon, GenericExpressionCommon, GenDM, PrintableCommon):
|
|
10380
10366
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1a0
|
10381
10367
|
|
10382
10368
|
Doc source:
|
10383
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#
|
10369
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#L1129
|
10384
10370
|
|
10385
10371
|
|
10386
10372
|
|
@@ -10432,7 +10418,7 @@ class DM(MatrixCommon, GenericExpressionCommon, GenDM, PrintableCommon):
|
|
10432
10418
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1a1
|
10433
10419
|
|
10434
10420
|
Doc source:
|
10435
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#
|
10421
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#L1140
|
10436
10422
|
|
10437
10423
|
|
10438
10424
|
|
@@ -10454,7 +10440,7 @@ class DM(MatrixCommon, GenericExpressionCommon, GenDM, PrintableCommon):
|
|
10454
10440
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1a4
|
10455
10441
|
|
10456
10442
|
Doc source:
|
10457
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#
|
10443
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#L1157
|
10458
10444
|
|
10459
10445
|
|
10460
10446
|
|
@@ -10476,7 +10462,7 @@ class DM(MatrixCommon, GenericExpressionCommon, GenDM, PrintableCommon):
|
|
10476
10462
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1a3
|
10477
10463
|
|
10478
10464
|
Doc source:
|
10479
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#
|
10465
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#L1150
|
10480
10466
|
|
10481
10467
|
|
10482
10468
|
|
@@ -10630,7 +10616,7 @@ class DM(MatrixCommon, GenericExpressionCommon, GenDM, PrintableCommon):
|
|
10630
10616
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1ab
|
10631
10617
|
|
10632
10618
|
Doc source:
|
10633
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#
|
10619
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#L1216
|
10634
10620
|
|
10635
10621
|
|
10636
10622
|
|
@@ -10659,7 +10645,7 @@ class DM(MatrixCommon, GenericExpressionCommon, GenDM, PrintableCommon):
|
|
10659
10645
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1ab
|
10660
10646
|
|
10661
10647
|
Doc source:
|
10662
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#
|
10648
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#L1212
|
10663
10649
|
|
10664
10650
|
|
10665
10651
|
|
@@ -10680,7 +10666,7 @@ class DM(MatrixCommon, GenericExpressionCommon, GenDM, PrintableCommon):
|
|
10680
10666
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1ab
|
10681
10667
|
|
10682
10668
|
Doc source:
|
10683
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#
|
10669
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#L1216
|
10684
10670
|
|
10685
10671
|
|
10686
10672
|
|
@@ -10735,7 +10721,7 @@ class DM(MatrixCommon, GenericExpressionCommon, GenDM, PrintableCommon):
|
|
10735
10721
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1ah
|
10736
10722
|
|
10737
10723
|
Doc source:
|
10738
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#
|
10724
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#L1264
|
10739
10725
|
|
10740
10726
|
|
10741
10727
|
|
@@ -10753,7 +10739,7 @@ class DM(MatrixCommon, GenericExpressionCommon, GenDM, PrintableCommon):
|
|
10753
10739
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1ah
|
10754
10740
|
|
10755
10741
|
Doc source:
|
10756
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#
|
10742
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#L1264
|
10757
10743
|
|
10758
10744
|
|
10759
10745
|
|
@@ -10774,7 +10760,7 @@ class DM(MatrixCommon, GenericExpressionCommon, GenDM, PrintableCommon):
|
|
10774
10760
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1ae
|
10775
10761
|
|
10776
10762
|
Doc source:
|
10777
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#
|
10763
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#L1249
|
10778
10764
|
|
10779
10765
|
|
10780
10766
|
|
@@ -10831,7 +10817,7 @@ class DM(MatrixCommon, GenericExpressionCommon, GenDM, PrintableCommon):
|
|
10831
10817
|
|
10832
10818
|
|
10833
10819
|
Doc source:
|
10834
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#
|
10820
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#L1284
|
10835
10821
|
|
10836
10822
|
|
10837
10823
|
|
@@ -10971,7 +10957,7 @@ class DM(MatrixCommon, GenericExpressionCommon, GenDM, PrintableCommon):
|
|
10971
10957
|
if "vectorized" in name:
|
10972
10958
|
name = name[:-len(" (vectorized)")]
|
10973
10959
|
|
10974
|
-
conversion = {"multiply": "mul", "divide": "div", "true_divide": "div", "subtract":"sub","power":"pow","greater_equal":"ge","less_equal": "le", "less": "lt", "greater": "gt"}
|
10960
|
+
conversion = {"multiply": "mul", "divide": "div", "true_divide": "div", "subtract":"sub","power":"pow","greater_equal":"ge","less_equal": "le", "less": "lt", "greater": "gt", "equal": "eq", "not_equal": "ne"}
|
10975
10961
|
if name in conversion:
|
10976
10962
|
name = conversion[name]
|
10977
10963
|
if len(context[1])==2 and context[1][1] is self and not(context[1][0] is self):
|
@@ -10983,7 +10969,7 @@ class DM(MatrixCommon, GenericExpressionCommon, GenDM, PrintableCommon):
|
|
10983
10969
|
return fun(*args[1:])
|
10984
10970
|
|
10985
10971
|
def __array_ufunc__(self, ufunc, method, *inputs, **kwargs):
|
10986
|
-
conversion = {"multiply": "mul", "divide": "div", "true_divide": "div", "subtract":"sub","power":"pow","greater_equal":"ge","less_equal": "le", "less": "lt", "greater": "gt"}
|
10972
|
+
conversion = {"multiply": "mul", "divide": "div", "true_divide": "div", "subtract":"sub","power":"pow","greater_equal":"ge","less_equal": "le", "less": "lt", "greater": "gt", "equal": "eq", "not_equal": "ne"}
|
10987
10973
|
name = ufunc.__name__
|
10988
10974
|
inputs = list(inputs)
|
10989
10975
|
if len(inputs)==3:
|
@@ -11003,7 +10989,13 @@ class DM(MatrixCommon, GenericExpressionCommon, GenDM, PrintableCommon):
|
|
11003
10989
|
assert method=="__call__"
|
11004
10990
|
fun=getattr(self, name)
|
11005
10991
|
return fun(*inputs[1:])
|
11006
|
-
except:
|
10992
|
+
except Exception as e:
|
10993
|
+
if "Dimension mismatch" in str(e):
|
10994
|
+
import sys
|
10995
|
+
if sys.version_info[0] < 3:
|
10996
|
+
raise RuntimeError(str(e))
|
10997
|
+
else:
|
10998
|
+
raise e
|
11007
10999
|
#Fall back to numpy conversion
|
11008
11000
|
new_inputs = list(inputs)
|
11009
11001
|
try:
|
@@ -11485,7 +11477,7 @@ def DM_rand(*args) -> "casadi::Matrix< double >":
|
|
11485
11477
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1ab
|
11486
11478
|
|
11487
11479
|
Doc source:
|
11488
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#
|
11480
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#L1216
|
11489
11481
|
|
11490
11482
|
|
11491
11483
|
|
@@ -11514,7 +11506,7 @@ def DM_rand(*args) -> "casadi::Matrix< double >":
|
|
11514
11506
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1ab
|
11515
11507
|
|
11516
11508
|
Doc source:
|
11517
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#
|
11509
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#L1212
|
11518
11510
|
|
11519
11511
|
|
11520
11512
|
|
@@ -11535,7 +11527,7 @@ def DM_rand(*args) -> "casadi::Matrix< double >":
|
|
11535
11527
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1ab
|
11536
11528
|
|
11537
11529
|
Doc source:
|
11538
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#
|
11530
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#L1216
|
11539
11531
|
|
11540
11532
|
|
11541
11533
|
|
@@ -12692,7 +12684,7 @@ class SX(MatrixCommon, GenericExpressionCommon, GenSX, PrintableCommon):
|
|
12692
12684
|
Extra doc: https://github.com/casadi/casadi/wiki/L_19v
|
12693
12685
|
|
12694
12686
|
Doc source:
|
12695
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#
|
12687
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#L1100
|
12696
12688
|
|
12697
12689
|
|
12698
12690
|
|
@@ -12716,7 +12708,7 @@ class SX(MatrixCommon, GenericExpressionCommon, GenSX, PrintableCommon):
|
|
12716
12708
|
Extra doc: https://github.com/casadi/casadi/wiki/L_19w
|
12717
12709
|
|
12718
12710
|
Doc source:
|
12719
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#
|
12711
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#L1107
|
12720
12712
|
|
12721
12713
|
|
12722
12714
|
|
@@ -12740,7 +12732,7 @@ class SX(MatrixCommon, GenericExpressionCommon, GenSX, PrintableCommon):
|
|
12740
12732
|
Extra doc: https://github.com/casadi/casadi/wiki/L_19x
|
12741
12733
|
|
12742
12734
|
Doc source:
|
12743
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#
|
12735
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#L1112
|
12744
12736
|
|
12745
12737
|
|
12746
12738
|
|
@@ -12764,7 +12756,7 @@ class SX(MatrixCommon, GenericExpressionCommon, GenSX, PrintableCommon):
|
|
12764
12756
|
Extra doc: https://github.com/casadi/casadi/wiki/L_19y
|
12765
12757
|
|
12766
12758
|
Doc source:
|
12767
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#
|
12759
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#L1117
|
12768
12760
|
|
12769
12761
|
|
12770
12762
|
|
@@ -12788,7 +12780,7 @@ class SX(MatrixCommon, GenericExpressionCommon, GenSX, PrintableCommon):
|
|
12788
12780
|
Extra doc: https://github.com/casadi/casadi/wiki/L_19z
|
12789
12781
|
|
12790
12782
|
Doc source:
|
12791
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#
|
12783
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#L1122
|
12792
12784
|
|
12793
12785
|
|
12794
12786
|
|
@@ -12814,7 +12806,7 @@ class SX(MatrixCommon, GenericExpressionCommon, GenSX, PrintableCommon):
|
|
12814
12806
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1a0
|
12815
12807
|
|
12816
12808
|
Doc source:
|
12817
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#
|
12809
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#L1129
|
12818
12810
|
|
12819
12811
|
|
12820
12812
|
|
@@ -12866,7 +12858,7 @@ class SX(MatrixCommon, GenericExpressionCommon, GenSX, PrintableCommon):
|
|
12866
12858
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1a1
|
12867
12859
|
|
12868
12860
|
Doc source:
|
12869
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#
|
12861
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#L1140
|
12870
12862
|
|
12871
12863
|
|
12872
12864
|
|
@@ -12888,7 +12880,7 @@ class SX(MatrixCommon, GenericExpressionCommon, GenSX, PrintableCommon):
|
|
12888
12880
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1a4
|
12889
12881
|
|
12890
12882
|
Doc source:
|
12891
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#
|
12883
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#L1157
|
12892
12884
|
|
12893
12885
|
|
12894
12886
|
|
@@ -12910,7 +12902,7 @@ class SX(MatrixCommon, GenericExpressionCommon, GenSX, PrintableCommon):
|
|
12910
12902
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1a3
|
12911
12903
|
|
12912
12904
|
Doc source:
|
12913
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#
|
12905
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#L1150
|
12914
12906
|
|
12915
12907
|
|
12916
12908
|
|
@@ -13064,7 +13056,7 @@ class SX(MatrixCommon, GenericExpressionCommon, GenSX, PrintableCommon):
|
|
13064
13056
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1ab
|
13065
13057
|
|
13066
13058
|
Doc source:
|
13067
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#
|
13059
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#L1216
|
13068
13060
|
|
13069
13061
|
|
13070
13062
|
|
@@ -13093,7 +13085,7 @@ class SX(MatrixCommon, GenericExpressionCommon, GenSX, PrintableCommon):
|
|
13093
13085
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1ab
|
13094
13086
|
|
13095
13087
|
Doc source:
|
13096
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#
|
13088
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#L1212
|
13097
13089
|
|
13098
13090
|
|
13099
13091
|
|
@@ -13114,7 +13106,7 @@ class SX(MatrixCommon, GenericExpressionCommon, GenSX, PrintableCommon):
|
|
13114
13106
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1ab
|
13115
13107
|
|
13116
13108
|
Doc source:
|
13117
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#
|
13109
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#L1216
|
13118
13110
|
|
13119
13111
|
|
13120
13112
|
|
@@ -13169,7 +13161,7 @@ class SX(MatrixCommon, GenericExpressionCommon, GenSX, PrintableCommon):
|
|
13169
13161
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1ah
|
13170
13162
|
|
13171
13163
|
Doc source:
|
13172
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#
|
13164
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#L1264
|
13173
13165
|
|
13174
13166
|
|
13175
13167
|
|
@@ -13187,7 +13179,7 @@ class SX(MatrixCommon, GenericExpressionCommon, GenSX, PrintableCommon):
|
|
13187
13179
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1ah
|
13188
13180
|
|
13189
13181
|
Doc source:
|
13190
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#
|
13182
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#L1264
|
13191
13183
|
|
13192
13184
|
|
13193
13185
|
|
@@ -13208,7 +13200,7 @@ class SX(MatrixCommon, GenericExpressionCommon, GenSX, PrintableCommon):
|
|
13208
13200
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1ae
|
13209
13201
|
|
13210
13202
|
Doc source:
|
13211
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#
|
13203
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#L1249
|
13212
13204
|
|
13213
13205
|
|
13214
13206
|
|
@@ -13265,7 +13257,7 @@ class SX(MatrixCommon, GenericExpressionCommon, GenSX, PrintableCommon):
|
|
13265
13257
|
|
13266
13258
|
|
13267
13259
|
Doc source:
|
13268
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#
|
13260
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#L1284
|
13269
13261
|
|
13270
13262
|
|
13271
13263
|
|
@@ -13338,7 +13330,7 @@ class SX(MatrixCommon, GenericExpressionCommon, GenSX, PrintableCommon):
|
|
13338
13330
|
if "vectorized" in name:
|
13339
13331
|
name = name[:-len(" (vectorized)")]
|
13340
13332
|
|
13341
|
-
conversion = {"multiply": "mul", "divide": "div", "true_divide": "div", "subtract":"sub","power":"pow","greater_equal":"ge","less_equal": "le", "less": "lt", "greater": "gt"}
|
13333
|
+
conversion = {"multiply": "mul", "divide": "div", "true_divide": "div", "subtract":"sub","power":"pow","greater_equal":"ge","less_equal": "le", "less": "lt", "greater": "gt", "equal": "eq", "not_equal": "ne"}
|
13342
13334
|
if name in conversion:
|
13343
13335
|
name = conversion[name]
|
13344
13336
|
if len(context[1])==2 and context[1][1] is self and not(context[1][0] is self):
|
@@ -13350,7 +13342,7 @@ class SX(MatrixCommon, GenericExpressionCommon, GenSX, PrintableCommon):
|
|
13350
13342
|
return fun(*args[1:])
|
13351
13343
|
|
13352
13344
|
def __array_ufunc__(self, ufunc, method, *inputs, **kwargs):
|
13353
|
-
conversion = {"multiply": "mul", "divide": "div", "true_divide": "div", "subtract":"sub","power":"pow","greater_equal":"ge","less_equal": "le", "less": "lt", "greater": "gt"}
|
13345
|
+
conversion = {"multiply": "mul", "divide": "div", "true_divide": "div", "subtract":"sub","power":"pow","greater_equal":"ge","less_equal": "le", "less": "lt", "greater": "gt", "equal": "eq", "not_equal": "ne"}
|
13354
13346
|
name = ufunc.__name__
|
13355
13347
|
inputs = list(inputs)
|
13356
13348
|
if len(inputs)==3:
|
@@ -13370,7 +13362,13 @@ class SX(MatrixCommon, GenericExpressionCommon, GenSX, PrintableCommon):
|
|
13370
13362
|
assert method=="__call__"
|
13371
13363
|
fun=getattr(self, name)
|
13372
13364
|
return fun(*inputs[1:])
|
13373
|
-
except:
|
13365
|
+
except Exception as e:
|
13366
|
+
if "Dimension mismatch" in str(e):
|
13367
|
+
import sys
|
13368
|
+
if sys.version_info[0] < 3:
|
13369
|
+
raise RuntimeError(str(e))
|
13370
|
+
else:
|
13371
|
+
raise e
|
13374
13372
|
#Fall back to numpy conversion
|
13375
13373
|
new_inputs = list(inputs)
|
13376
13374
|
try:
|
@@ -13834,7 +13832,7 @@ def SX_rand(*args) -> "casadi::Matrix< casadi::SXElem >":
|
|
13834
13832
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1ab
|
13835
13833
|
|
13836
13834
|
Doc source:
|
13837
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#
|
13835
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#L1216
|
13838
13836
|
|
13839
13837
|
|
13840
13838
|
|
@@ -13863,7 +13861,7 @@ def SX_rand(*args) -> "casadi::Matrix< casadi::SXElem >":
|
|
13863
13861
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1ab
|
13864
13862
|
|
13865
13863
|
Doc source:
|
13866
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#
|
13864
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#L1212
|
13867
13865
|
|
13868
13866
|
|
13869
13867
|
|
@@ -13884,7 +13882,7 @@ def SX_rand(*args) -> "casadi::Matrix< casadi::SXElem >":
|
|
13884
13882
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1ab
|
13885
13883
|
|
13886
13884
|
Doc source:
|
13887
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#
|
13885
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#L1216
|
13888
13886
|
|
13889
13887
|
|
13890
13888
|
|
@@ -16329,7 +16327,7 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
|
|
16329
16327
|
if "vectorized" in name:
|
16330
16328
|
name = name[:-len(" (vectorized)")]
|
16331
16329
|
|
16332
|
-
conversion = {"multiply": "mul", "divide": "div", "true_divide": "div", "subtract":"sub","power":"pow","greater_equal":"ge","less_equal": "le", "less": "lt", "greater": "gt"}
|
16330
|
+
conversion = {"multiply": "mul", "divide": "div", "true_divide": "div", "subtract":"sub","power":"pow","greater_equal":"ge","less_equal": "le", "less": "lt", "greater": "gt", "equal": "eq", "not_equal": "ne"}
|
16333
16331
|
if name in conversion:
|
16334
16332
|
name = conversion[name]
|
16335
16333
|
if len(context[1])==2 and context[1][1] is self and not(context[1][0] is self):
|
@@ -16341,7 +16339,7 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
|
|
16341
16339
|
return fun(*args[1:])
|
16342
16340
|
|
16343
16341
|
def __array_ufunc__(self, ufunc, method, *inputs, **kwargs):
|
16344
|
-
conversion = {"multiply": "mul", "divide": "div", "true_divide": "div", "subtract":"sub","power":"pow","greater_equal":"ge","less_equal": "le", "less": "lt", "greater": "gt"}
|
16342
|
+
conversion = {"multiply": "mul", "divide": "div", "true_divide": "div", "subtract":"sub","power":"pow","greater_equal":"ge","less_equal": "le", "less": "lt", "greater": "gt", "equal": "eq", "not_equal": "ne"}
|
16345
16343
|
name = ufunc.__name__
|
16346
16344
|
inputs = list(inputs)
|
16347
16345
|
if len(inputs)==3:
|
@@ -16361,7 +16359,13 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
|
|
16361
16359
|
assert method=="__call__"
|
16362
16360
|
fun=getattr(self, name)
|
16363
16361
|
return fun(*inputs[1:])
|
16364
|
-
except:
|
16362
|
+
except Exception as e:
|
16363
|
+
if "Dimension mismatch" in str(e):
|
16364
|
+
import sys
|
16365
|
+
if sys.version_info[0] < 3:
|
16366
|
+
raise RuntimeError(str(e))
|
16367
|
+
else:
|
16368
|
+
raise e
|
16365
16369
|
#Fall back to numpy conversion
|
16366
16370
|
new_inputs = list(inputs)
|
16367
16371
|
try:
|
@@ -17326,6 +17330,12 @@ class Function(SharedObject, PrintableCommon):
|
|
17326
17330
|
| | | evaluation fails | |
|
17327
17331
|
| | | (default true). | |
|
17328
17332
|
+------------------+-----------------+------------------+------------------+
|
17333
|
+
| external_transfo | OT_VECTORVECTOR | List of external | casadi::Function |
|
17334
|
+
| rm | | _transform | Internal |
|
17335
|
+
| | | instruction | |
|
17336
|
+
| | | arguments. | |
|
17337
|
+
| | | Default: empty | |
|
17338
|
+
+------------------+-----------------+------------------+------------------+
|
17329
17339
|
| fd_method | OT_STRING | Method for | casadi::Function |
|
17330
17340
|
| | | finite | Internal |
|
17331
17341
|
| | | differencing | |
|
@@ -17613,7 +17623,7 @@ class Function(SharedObject, PrintableCommon):
|
|
17613
17623
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L189
|
17614
17624
|
|
17615
17625
|
Implementation:
|
17616
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
17626
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L293-L305
|
17617
17627
|
|
17618
17628
|
|
17619
17629
|
|
@@ -17665,7 +17675,7 @@ class Function(SharedObject, PrintableCommon):
|
|
17665
17675
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L185
|
17666
17676
|
|
17667
17677
|
Implementation:
|
17668
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
17678
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L284-L291
|
17669
17679
|
|
17670
17680
|
|
17671
17681
|
|
@@ -17720,7 +17730,7 @@ class Function(SharedObject, PrintableCommon):
|
|
17720
17730
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L189
|
17721
17731
|
|
17722
17732
|
Implementation:
|
17723
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
17733
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L293-L305
|
17724
17734
|
|
17725
17735
|
|
17726
17736
|
|
@@ -17751,7 +17761,7 @@ class Function(SharedObject, PrintableCommon):
|
|
17751
17761
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L207
|
17752
17762
|
|
17753
17763
|
Implementation:
|
17754
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
17764
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L317-L333
|
17755
17765
|
|
17756
17766
|
|
17757
17767
|
|
@@ -17772,7 +17782,7 @@ class Function(SharedObject, PrintableCommon):
|
|
17772
17782
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L206
|
17773
17783
|
|
17774
17784
|
Implementation:
|
17775
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
17785
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L307-L315
|
17776
17786
|
|
17777
17787
|
|
17778
17788
|
|
@@ -17796,7 +17806,7 @@ class Function(SharedObject, PrintableCommon):
|
|
17796
17806
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L207
|
17797
17807
|
|
17798
17808
|
Implementation:
|
17799
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
17809
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L317-L333
|
17800
17810
|
|
17801
17811
|
|
17802
17812
|
|
@@ -17824,7 +17834,7 @@ class Function(SharedObject, PrintableCommon):
|
|
17824
17834
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L228
|
17825
17835
|
|
17826
17836
|
Implementation:
|
17827
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
17837
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L818-L820
|
17828
17838
|
|
17829
17839
|
|
17830
17840
|
|
@@ -17849,7 +17859,7 @@ class Function(SharedObject, PrintableCommon):
|
|
17849
17859
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L233
|
17850
17860
|
|
17851
17861
|
Implementation:
|
17852
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
17862
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L822-L824
|
17853
17863
|
|
17854
17864
|
|
17855
17865
|
|
@@ -17896,7 +17906,7 @@ class Function(SharedObject, PrintableCommon):
|
|
17896
17906
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L239
|
17897
17907
|
|
17898
17908
|
Implementation:
|
17899
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
17909
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L826-L828
|
17900
17910
|
|
17901
17911
|
|
17902
17912
|
|
@@ -17970,7 +17980,7 @@ class Function(SharedObject, PrintableCommon):
|
|
17970
17980
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L241
|
17971
17981
|
|
17972
17982
|
Implementation:
|
17973
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
17983
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L830-L832
|
17974
17984
|
|
17975
17985
|
|
17976
17986
|
|
@@ -18044,7 +18054,7 @@ class Function(SharedObject, PrintableCommon):
|
|
18044
18054
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L243
|
18045
18055
|
|
18046
18056
|
Implementation:
|
18047
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
18057
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L842-L844
|
18048
18058
|
|
18049
18059
|
|
18050
18060
|
|
@@ -18118,7 +18128,7 @@ class Function(SharedObject, PrintableCommon):
|
|
18118
18128
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L253
|
18119
18129
|
|
18120
18130
|
Implementation:
|
18121
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
18131
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L834-L836
|
18122
18132
|
|
18123
18133
|
|
18124
18134
|
|
@@ -18192,7 +18202,7 @@ class Function(SharedObject, PrintableCommon):
|
|
18192
18202
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L255
|
18193
18203
|
|
18194
18204
|
Implementation:
|
18195
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
18205
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L838-L840
|
18196
18206
|
|
18197
18207
|
|
18198
18208
|
|
@@ -18266,7 +18276,7 @@ class Function(SharedObject, PrintableCommon):
|
|
18266
18276
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L257
|
18267
18277
|
|
18268
18278
|
Implementation:
|
18269
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
18279
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L846-L848
|
18270
18280
|
|
18271
18281
|
|
18272
18282
|
|
@@ -18345,7 +18355,7 @@ class Function(SharedObject, PrintableCommon):
|
|
18345
18355
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L269
|
18346
18356
|
|
18347
18357
|
Implementation:
|
18348
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
18358
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L850-L852
|
18349
18359
|
|
18350
18360
|
|
18351
18361
|
|
@@ -18371,7 +18381,7 @@ class Function(SharedObject, PrintableCommon):
|
|
18371
18381
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L270
|
18372
18382
|
|
18373
18383
|
Implementation:
|
18374
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
18384
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L866-L868
|
18375
18385
|
|
18376
18386
|
|
18377
18387
|
|
@@ -18452,7 +18462,7 @@ class Function(SharedObject, PrintableCommon):
|
|
18452
18462
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L280
|
18453
18463
|
|
18454
18464
|
Implementation:
|
18455
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
18465
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L854-L856
|
18456
18466
|
|
18457
18467
|
|
18458
18468
|
|
@@ -18478,7 +18488,7 @@ class Function(SharedObject, PrintableCommon):
|
|
18478
18488
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L281
|
18479
18489
|
|
18480
18490
|
Implementation:
|
18481
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
18491
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L870-L872
|
18482
18492
|
|
18483
18493
|
|
18484
18494
|
|
@@ -18559,7 +18569,7 @@ class Function(SharedObject, PrintableCommon):
|
|
18559
18569
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L291
|
18560
18570
|
|
18561
18571
|
Implementation:
|
18562
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
18572
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L858-L860
|
18563
18573
|
|
18564
18574
|
|
18565
18575
|
|
@@ -18585,7 +18595,7 @@ class Function(SharedObject, PrintableCommon):
|
|
18585
18595
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L292
|
18586
18596
|
|
18587
18597
|
Implementation:
|
18588
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
18598
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L874-L876
|
18589
18599
|
|
18590
18600
|
|
18591
18601
|
|
@@ -18666,7 +18676,7 @@ class Function(SharedObject, PrintableCommon):
|
|
18666
18676
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L302
|
18667
18677
|
|
18668
18678
|
Implementation:
|
18669
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
18679
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L862-L864
|
18670
18680
|
|
18671
18681
|
|
18672
18682
|
|
@@ -18692,7 +18702,7 @@ class Function(SharedObject, PrintableCommon):
|
|
18692
18702
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L303
|
18693
18703
|
|
18694
18704
|
Implementation:
|
18695
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
18705
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L878-L880
|
18696
18706
|
|
18697
18707
|
|
18698
18708
|
|
@@ -18747,7 +18757,7 @@ class Function(SharedObject, PrintableCommon):
|
|
18747
18757
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L320
|
18748
18758
|
|
18749
18759
|
Implementation:
|
18750
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
18760
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L974-L980
|
18751
18761
|
|
18752
18762
|
|
18753
18763
|
|
@@ -18768,7 +18778,7 @@ class Function(SharedObject, PrintableCommon):
|
|
18768
18778
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L320
|
18769
18779
|
|
18770
18780
|
Implementation:
|
18771
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
18781
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L974-L980
|
18772
18782
|
|
18773
18783
|
|
18774
18784
|
|
@@ -18792,7 +18802,7 @@ class Function(SharedObject, PrintableCommon):
|
|
18792
18802
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L310
|
18793
18803
|
|
18794
18804
|
Implementation:
|
18795
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
18805
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L950-L952
|
18796
18806
|
|
18797
18807
|
|
18798
18808
|
|
@@ -18821,7 +18831,7 @@ class Function(SharedObject, PrintableCommon):
|
|
18821
18831
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L325
|
18822
18832
|
|
18823
18833
|
Implementation:
|
18824
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
18834
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L982-L988
|
18825
18835
|
|
18826
18836
|
|
18827
18837
|
|
@@ -18842,7 +18852,7 @@ class Function(SharedObject, PrintableCommon):
|
|
18842
18852
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L325
|
18843
18853
|
|
18844
18854
|
Implementation:
|
18845
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
18855
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L982-L988
|
18846
18856
|
|
18847
18857
|
|
18848
18858
|
|
@@ -18866,7 +18876,7 @@ class Function(SharedObject, PrintableCommon):
|
|
18866
18876
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L315
|
18867
18877
|
|
18868
18878
|
Implementation:
|
18869
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
18879
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L954-L956
|
18870
18880
|
|
18871
18881
|
|
18872
18882
|
|
@@ -18900,7 +18910,7 @@ class Function(SharedObject, PrintableCommon):
|
|
18900
18910
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L333
|
18901
18911
|
|
18902
18912
|
Implementation:
|
18903
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
18913
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L958-L964
|
18904
18914
|
|
18905
18915
|
|
18906
18916
|
|
@@ -18931,7 +18941,7 @@ class Function(SharedObject, PrintableCommon):
|
|
18931
18941
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L341
|
18932
18942
|
|
18933
18943
|
Implementation:
|
18934
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
18944
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L966-L972
|
18935
18945
|
|
18936
18946
|
|
18937
18947
|
|
@@ -18956,7 +18966,7 @@ class Function(SharedObject, PrintableCommon):
|
|
18956
18966
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L346
|
18957
18967
|
|
18958
18968
|
Implementation:
|
18959
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
18969
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1454-L1456
|
18960
18970
|
|
18961
18971
|
|
18962
18972
|
|
@@ -18981,7 +18991,7 @@ class Function(SharedObject, PrintableCommon):
|
|
18981
18991
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L351
|
18982
18992
|
|
18983
18993
|
Implementation:
|
18984
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
18994
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1458-L1460
|
18985
18995
|
|
18986
18996
|
|
18987
18997
|
|
@@ -19006,7 +19016,7 @@ class Function(SharedObject, PrintableCommon):
|
|
19006
19016
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L356
|
19007
19017
|
|
19008
19018
|
Implementation:
|
19009
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
19019
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1462-L1464
|
19010
19020
|
|
19011
19021
|
|
19012
19022
|
|
@@ -19031,7 +19041,7 @@ class Function(SharedObject, PrintableCommon):
|
|
19031
19041
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L361
|
19032
19042
|
|
19033
19043
|
Implementation:
|
19034
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
19044
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1466-L1468
|
19035
19045
|
|
19036
19046
|
|
19037
19047
|
|
@@ -19056,7 +19066,7 @@ class Function(SharedObject, PrintableCommon):
|
|
19056
19066
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L366
|
19057
19067
|
|
19058
19068
|
Implementation:
|
19059
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
19069
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1470-L1472
|
19060
19070
|
|
19061
19071
|
|
19062
19072
|
|
@@ -19082,7 +19092,7 @@ class Function(SharedObject, PrintableCommon):
|
|
19082
19092
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L373
|
19083
19093
|
|
19084
19094
|
Implementation:
|
19085
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
19095
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L998-L1004
|
19086
19096
|
|
19087
19097
|
|
19088
19098
|
|
@@ -19103,7 +19113,7 @@ class Function(SharedObject, PrintableCommon):
|
|
19103
19113
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L372
|
19104
19114
|
|
19105
19115
|
Implementation:
|
19106
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
19116
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L990-L996
|
19107
19117
|
|
19108
19118
|
|
19109
19119
|
|
@@ -19127,7 +19137,7 @@ class Function(SharedObject, PrintableCommon):
|
|
19127
19137
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L373
|
19128
19138
|
|
19129
19139
|
Implementation:
|
19130
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
19140
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L998-L1004
|
19131
19141
|
|
19132
19142
|
|
19133
19143
|
|
@@ -19156,7 +19166,7 @@ class Function(SharedObject, PrintableCommon):
|
|
19156
19166
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L381
|
19157
19167
|
|
19158
19168
|
Implementation:
|
19159
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
19169
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1014-L1020
|
19160
19170
|
|
19161
19171
|
|
19162
19172
|
|
@@ -19177,7 +19187,7 @@ class Function(SharedObject, PrintableCommon):
|
|
19177
19187
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L380
|
19178
19188
|
|
19179
19189
|
Implementation:
|
19180
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
19190
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1006-L1012
|
19181
19191
|
|
19182
19192
|
|
19183
19193
|
|
@@ -19201,7 +19211,7 @@ class Function(SharedObject, PrintableCommon):
|
|
19201
19211
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L381
|
19202
19212
|
|
19203
19213
|
Implementation:
|
19204
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
19214
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1014-L1020
|
19205
19215
|
|
19206
19216
|
|
19207
19217
|
|
@@ -19230,7 +19240,7 @@ class Function(SharedObject, PrintableCommon):
|
|
19230
19240
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L390
|
19231
19241
|
|
19232
19242
|
Implementation:
|
19233
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
19243
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1038-L1044
|
19234
19244
|
|
19235
19245
|
|
19236
19246
|
|
@@ -19251,7 +19261,7 @@ class Function(SharedObject, PrintableCommon):
|
|
19251
19261
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L390
|
19252
19262
|
|
19253
19263
|
Implementation:
|
19254
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
19264
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1038-L1044
|
19255
19265
|
|
19256
19266
|
|
19257
19267
|
|
@@ -19275,7 +19285,7 @@ class Function(SharedObject, PrintableCommon):
|
|
19275
19285
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L388
|
19276
19286
|
|
19277
19287
|
Implementation:
|
19278
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
19288
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1022-L1028
|
19279
19289
|
|
19280
19290
|
|
19281
19291
|
|
@@ -19304,7 +19314,7 @@ class Function(SharedObject, PrintableCommon):
|
|
19304
19314
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L391
|
19305
19315
|
|
19306
19316
|
Implementation:
|
19307
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
19317
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1046-L1052
|
19308
19318
|
|
19309
19319
|
|
19310
19320
|
|
@@ -19325,7 +19335,7 @@ class Function(SharedObject, PrintableCommon):
|
|
19325
19335
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L391
|
19326
19336
|
|
19327
19337
|
Implementation:
|
19328
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
19338
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1046-L1052
|
19329
19339
|
|
19330
19340
|
|
19331
19341
|
|
@@ -19349,7 +19359,7 @@ class Function(SharedObject, PrintableCommon):
|
|
19349
19359
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L389
|
19350
19360
|
|
19351
19361
|
Implementation:
|
19352
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
19362
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1030-L1036
|
19353
19363
|
|
19354
19364
|
|
19355
19365
|
|
@@ -19391,7 +19401,7 @@ class Function(SharedObject, PrintableCommon):
|
|
19391
19401
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L407
|
19392
19402
|
|
19393
19403
|
Implementation:
|
19394
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
19404
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1877-L1883
|
19395
19405
|
|
19396
19406
|
|
19397
19407
|
|
@@ -19416,7 +19426,7 @@ class Function(SharedObject, PrintableCommon):
|
|
19416
19426
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L412
|
19417
19427
|
|
19418
19428
|
Implementation:
|
19419
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
19429
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1885-L1887
|
19420
19430
|
|
19421
19431
|
|
19422
19432
|
|
@@ -19441,7 +19451,7 @@ class Function(SharedObject, PrintableCommon):
|
|
19441
19451
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L417
|
19442
19452
|
|
19443
19453
|
Implementation:
|
19444
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
19454
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1889-L1891
|
19445
19455
|
|
19446
19456
|
|
19447
19457
|
|
@@ -19475,7 +19485,7 @@ class Function(SharedObject, PrintableCommon):
|
|
19475
19485
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L425
|
19476
19486
|
|
19477
19487
|
Implementation:
|
19478
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
19488
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1795-L1802
|
19479
19489
|
|
19480
19490
|
|
19481
19491
|
|
@@ -19500,7 +19510,7 @@ class Function(SharedObject, PrintableCommon):
|
|
19500
19510
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L432
|
19501
19511
|
|
19502
19512
|
Implementation:
|
19503
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
19513
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1126-L1128
|
19504
19514
|
|
19505
19515
|
|
19506
19516
|
|
@@ -19525,7 +19535,7 @@ class Function(SharedObject, PrintableCommon):
|
|
19525
19535
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L437
|
19526
19536
|
|
19527
19537
|
Implementation:
|
19528
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
19538
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1130-L1132
|
19529
19539
|
|
19530
19540
|
|
19531
19541
|
|
@@ -19550,7 +19560,7 @@ class Function(SharedObject, PrintableCommon):
|
|
19550
19560
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L442
|
19551
19561
|
|
19552
19562
|
Implementation:
|
19553
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
19563
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1134-L1136
|
19554
19564
|
|
19555
19565
|
|
19556
19566
|
|
@@ -19575,7 +19585,7 @@ class Function(SharedObject, PrintableCommon):
|
|
19575
19585
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L447
|
19576
19586
|
|
19577
19587
|
Implementation:
|
19578
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
19588
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1138-L1145
|
19579
19589
|
|
19580
19590
|
|
19581
19591
|
|
@@ -19606,7 +19616,7 @@ class Function(SharedObject, PrintableCommon):
|
|
19606
19616
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L455
|
19607
19617
|
|
19608
19618
|
Implementation:
|
19609
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
19619
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1147-L1157
|
19610
19620
|
|
19611
19621
|
|
19612
19622
|
|
@@ -19631,7 +19641,7 @@ class Function(SharedObject, PrintableCommon):
|
|
19631
19641
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L460
|
19632
19642
|
|
19633
19643
|
Implementation:
|
19634
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
19644
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L882-L884
|
19635
19645
|
|
19636
19646
|
|
19637
19647
|
|
@@ -19655,7 +19665,7 @@ class Function(SharedObject, PrintableCommon):
|
|
19655
19665
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L466
|
19656
19666
|
|
19657
19667
|
Implementation:
|
19658
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
19668
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L887-L893
|
19659
19669
|
|
19660
19670
|
|
19661
19671
|
|
@@ -19679,7 +19689,7 @@ class Function(SharedObject, PrintableCommon):
|
|
19679
19689
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L471
|
19680
19690
|
|
19681
19691
|
Implementation:
|
19682
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
19692
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L895-L903
|
19683
19693
|
|
19684
19694
|
|
19685
19695
|
|
@@ -19746,7 +19756,7 @@ class Function(SharedObject, PrintableCommon):
|
|
19746
19756
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L475
|
19747
19757
|
|
19748
19758
|
Implementation:
|
19749
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
19759
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L906-L912
|
19750
19760
|
|
19751
19761
|
|
19752
19762
|
|
@@ -19838,7 +19848,7 @@ class Function(SharedObject, PrintableCommon):
|
|
19838
19848
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L508
|
19839
19849
|
|
19840
19850
|
Implementation:
|
19841
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
19851
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L915-L921
|
19842
19852
|
|
19843
19853
|
|
19844
19854
|
|
@@ -19868,7 +19878,7 @@ class Function(SharedObject, PrintableCommon):
|
|
19868
19878
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L524
|
19869
19879
|
|
19870
19880
|
Implementation:
|
19871
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
19881
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1445-L1452
|
19872
19882
|
|
19873
19883
|
|
19874
19884
|
|
@@ -19889,7 +19899,7 @@ class Function(SharedObject, PrintableCommon):
|
|
19889
19899
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L520
|
19890
19900
|
|
19891
19901
|
Implementation:
|
19892
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
19902
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1427-L1434
|
19893
19903
|
|
19894
19904
|
|
19895
19905
|
|
@@ -19913,7 +19923,7 @@ class Function(SharedObject, PrintableCommon):
|
|
19913
19923
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L514
|
19914
19924
|
|
19915
19925
|
Implementation:
|
19916
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
19926
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L356-L363
|
19917
19927
|
|
19918
19928
|
|
19919
19929
|
|
@@ -19937,7 +19947,7 @@ class Function(SharedObject, PrintableCommon):
|
|
19937
19947
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L516
|
19938
19948
|
|
19939
19949
|
Implementation:
|
19940
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
19950
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L365-L372
|
19941
19951
|
|
19942
19952
|
|
19943
19953
|
|
@@ -19961,7 +19971,7 @@ class Function(SharedObject, PrintableCommon):
|
|
19961
19971
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L522
|
19962
19972
|
|
19963
19973
|
Implementation:
|
19964
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
19974
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1436-L1443
|
19965
19975
|
|
19966
19976
|
|
19967
19977
|
|
@@ -19985,7 +19995,7 @@ class Function(SharedObject, PrintableCommon):
|
|
19985
19995
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L524
|
19986
19996
|
|
19987
19997
|
Implementation:
|
19988
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
19998
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1445-L1452
|
19989
19999
|
|
19990
20000
|
|
19991
20001
|
|
@@ -20009,7 +20019,7 @@ class Function(SharedObject, PrintableCommon):
|
|
20009
20019
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L518
|
20010
20020
|
|
20011
20021
|
Implementation:
|
20012
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
20022
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L374-L381
|
20013
20023
|
|
20014
20024
|
|
20015
20025
|
|
@@ -20043,7 +20053,7 @@ class Function(SharedObject, PrintableCommon):
|
|
20043
20053
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L642
|
20044
20054
|
|
20045
20055
|
Implementation:
|
20046
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
20056
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L755-L762
|
20047
20057
|
|
20048
20058
|
|
20049
20059
|
|
@@ -20127,7 +20137,7 @@ class Function(SharedObject, PrintableCommon):
|
|
20127
20137
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L697
|
20128
20138
|
|
20129
20139
|
Implementation:
|
20130
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
20140
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L515-L517
|
20131
20141
|
|
20132
20142
|
|
20133
20143
|
|
@@ -20203,7 +20213,7 @@ class Function(SharedObject, PrintableCommon):
|
|
20203
20213
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L697
|
20204
20214
|
|
20205
20215
|
Implementation:
|
20206
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
20216
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L515-L517
|
20207
20217
|
|
20208
20218
|
|
20209
20219
|
|
@@ -20282,7 +20292,7 @@ class Function(SharedObject, PrintableCommon):
|
|
20282
20292
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L686
|
20283
20293
|
|
20284
20294
|
Implementation:
|
20285
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
20295
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L518-L520
|
20286
20296
|
|
20287
20297
|
|
20288
20298
|
|
@@ -20361,7 +20371,7 @@ class Function(SharedObject, PrintableCommon):
|
|
20361
20371
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L687
|
20362
20372
|
|
20363
20373
|
Implementation:
|
20364
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
20374
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L521-L549
|
20365
20375
|
|
20366
20376
|
|
20367
20377
|
|
@@ -20440,7 +20450,7 @@ class Function(SharedObject, PrintableCommon):
|
|
20440
20450
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L693
|
20441
20451
|
|
20442
20452
|
Implementation:
|
20443
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
20453
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L626-L634
|
20444
20454
|
|
20445
20455
|
|
20446
20456
|
|
@@ -20519,7 +20529,7 @@ class Function(SharedObject, PrintableCommon):
|
|
20519
20529
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L689
|
20520
20530
|
|
20521
20531
|
Implementation:
|
20522
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
20532
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L596-L624
|
20523
20533
|
|
20524
20534
|
|
20525
20535
|
|
@@ -20602,7 +20612,7 @@ class Function(SharedObject, PrintableCommon):
|
|
20602
20612
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L698
|
20603
20613
|
|
20604
20614
|
Implementation:
|
20605
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
20615
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L508-L514
|
20606
20616
|
|
20607
20617
|
|
20608
20618
|
|
@@ -20635,7 +20645,7 @@ class Function(SharedObject, PrintableCommon):
|
|
20635
20645
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L745
|
20636
20646
|
|
20637
20647
|
Implementation:
|
20638
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
20648
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L636-L642
|
20639
20649
|
|
20640
20650
|
|
20641
20651
|
|
@@ -20660,7 +20670,7 @@ class Function(SharedObject, PrintableCommon):
|
|
20660
20670
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L745
|
20661
20671
|
|
20662
20672
|
Implementation:
|
20663
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
20673
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L636-L642
|
20664
20674
|
|
20665
20675
|
|
20666
20676
|
|
@@ -20688,7 +20698,7 @@ class Function(SharedObject, PrintableCommon):
|
|
20688
20698
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L741
|
20689
20699
|
|
20690
20700
|
Implementation:
|
20691
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
20701
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L667-L674
|
20692
20702
|
|
20693
20703
|
|
20694
20704
|
|
@@ -20716,7 +20726,7 @@ class Function(SharedObject, PrintableCommon):
|
|
20716
20726
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L737
|
20717
20727
|
|
20718
20728
|
Implementation:
|
20719
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
20729
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L644-L665
|
20720
20730
|
|
20721
20731
|
|
20722
20732
|
|
@@ -20787,7 +20797,7 @@ class Function(SharedObject, PrintableCommon):
|
|
20787
20797
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L726
|
20788
20798
|
|
20789
20799
|
Implementation:
|
20790
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
20800
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L708-L743
|
20791
20801
|
|
20792
20802
|
|
20793
20803
|
|
@@ -20817,7 +20827,7 @@ class Function(SharedObject, PrintableCommon):
|
|
20817
20827
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L754
|
20818
20828
|
|
20819
20829
|
Implementation:
|
20820
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
20830
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L746-L753
|
20821
20831
|
|
20822
20832
|
|
20823
20833
|
|
@@ -20906,7 +20916,7 @@ class Function(SharedObject, PrintableCommon):
|
|
20906
20916
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L800
|
20907
20917
|
|
20908
20918
|
Implementation:
|
20909
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
20919
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1110-L1116
|
20910
20920
|
|
20911
20921
|
|
20912
20922
|
|
@@ -20951,7 +20961,7 @@ class Function(SharedObject, PrintableCommon):
|
|
20951
20961
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L820
|
20952
20962
|
|
20953
20963
|
Implementation:
|
20954
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
20964
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1118-L1124
|
20955
20965
|
|
20956
20966
|
|
20957
20967
|
|
@@ -20978,7 +20988,7 @@ class Function(SharedObject, PrintableCommon):
|
|
20978
20988
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L830
|
20979
20989
|
|
20980
20990
|
Implementation:
|
20981
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
20991
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L942-L948
|
20982
20992
|
|
20983
20993
|
|
20984
20994
|
|
@@ -20999,7 +21009,7 @@ class Function(SharedObject, PrintableCommon):
|
|
20999
21009
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L825
|
21000
21010
|
|
21001
21011
|
Implementation:
|
21002
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
21012
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L931-L940
|
21003
21013
|
|
21004
21014
|
|
21005
21015
|
|
@@ -21024,7 +21034,7 @@ class Function(SharedObject, PrintableCommon):
|
|
21024
21034
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L830
|
21025
21035
|
|
21026
21036
|
Implementation:
|
21027
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
21037
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L942-L948
|
21028
21038
|
|
21029
21039
|
|
21030
21040
|
|
@@ -21053,7 +21063,7 @@ class Function(SharedObject, PrintableCommon):
|
|
21053
21063
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L840
|
21054
21064
|
|
21055
21065
|
Implementation:
|
21056
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
21066
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1163-L1165
|
21057
21067
|
|
21058
21068
|
|
21059
21069
|
|
@@ -21074,7 +21084,7 @@ class Function(SharedObject, PrintableCommon):
|
|
21074
21084
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L840
|
21075
21085
|
|
21076
21086
|
Implementation:
|
21077
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
21087
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1163-L1165
|
21078
21088
|
|
21079
21089
|
|
21080
21090
|
|
@@ -21098,7 +21108,7 @@ class Function(SharedObject, PrintableCommon):
|
|
21098
21108
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L835
|
21099
21109
|
|
21100
21110
|
Implementation:
|
21101
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
21111
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1167-L1171
|
21102
21112
|
|
21103
21113
|
|
21104
21114
|
|
@@ -21126,7 +21136,7 @@ class Function(SharedObject, PrintableCommon):
|
|
21126
21136
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L845
|
21127
21137
|
|
21128
21138
|
Implementation:
|
21129
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
21139
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1173-L1175
|
21130
21140
|
|
21131
21141
|
|
21132
21142
|
|
@@ -21160,7 +21170,7 @@ class Function(SharedObject, PrintableCommon):
|
|
21160
21170
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L855
|
21161
21171
|
|
21162
21172
|
Implementation:
|
21163
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
21173
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1207-L1217
|
21164
21174
|
|
21165
21175
|
|
21166
21176
|
|
@@ -21189,7 +21199,7 @@ class Function(SharedObject, PrintableCommon):
|
|
21189
21199
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L855
|
21190
21200
|
|
21191
21201
|
Implementation:
|
21192
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
21202
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1207-L1217
|
21193
21203
|
|
21194
21204
|
|
21195
21205
|
|
@@ -21221,7 +21231,7 @@ class Function(SharedObject, PrintableCommon):
|
|
21221
21231
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L854
|
21222
21232
|
|
21223
21233
|
Implementation:
|
21224
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
21234
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1177-L1190
|
21225
21235
|
|
21226
21236
|
|
21227
21237
|
|
@@ -21258,7 +21268,7 @@ class Function(SharedObject, PrintableCommon):
|
|
21258
21268
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L866
|
21259
21269
|
|
21260
21270
|
Implementation:
|
21261
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
21271
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1219-L1229
|
21262
21272
|
|
21263
21273
|
|
21264
21274
|
|
@@ -21287,7 +21297,7 @@ class Function(SharedObject, PrintableCommon):
|
|
21287
21297
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L866
|
21288
21298
|
|
21289
21299
|
Implementation:
|
21290
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
21300
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1219-L1229
|
21291
21301
|
|
21292
21302
|
|
21293
21303
|
|
@@ -21319,7 +21329,7 @@ class Function(SharedObject, PrintableCommon):
|
|
21319
21329
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L865
|
21320
21330
|
|
21321
21331
|
Implementation:
|
21322
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
21332
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1192-L1205
|
21323
21333
|
|
21324
21334
|
|
21325
21335
|
|
@@ -21347,7 +21357,7 @@ class Function(SharedObject, PrintableCommon):
|
|
21347
21357
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L893
|
21348
21358
|
|
21349
21359
|
Implementation:
|
21350
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
21360
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1248-L1252
|
21351
21361
|
|
21352
21362
|
|
21353
21363
|
|
@@ -21375,7 +21385,7 @@ class Function(SharedObject, PrintableCommon):
|
|
21375
21385
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L900
|
21376
21386
|
|
21377
21387
|
Implementation:
|
21378
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
21388
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1243-L1246
|
21379
21389
|
|
21380
21390
|
|
21381
21391
|
|
@@ -21403,7 +21413,7 @@ class Function(SharedObject, PrintableCommon):
|
|
21403
21413
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L902
|
21404
21414
|
|
21405
21415
|
Implementation:
|
21406
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
21416
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1275-L1279
|
21407
21417
|
|
21408
21418
|
|
21409
21419
|
|
@@ -21426,7 +21436,7 @@ class Function(SharedObject, PrintableCommon):
|
|
21426
21436
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L902
|
21427
21437
|
|
21428
21438
|
Implementation:
|
21429
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
21439
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1275-L1279
|
21430
21440
|
|
21431
21441
|
|
21432
21442
|
|
@@ -21452,7 +21462,7 @@ class Function(SharedObject, PrintableCommon):
|
|
21452
21462
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L875
|
21453
21463
|
|
21454
21464
|
Implementation:
|
21455
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
21465
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1236-L1240
|
21456
21466
|
|
21457
21467
|
|
21458
21468
|
|
@@ -21479,7 +21489,7 @@ class Function(SharedObject, PrintableCommon):
|
|
21479
21489
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L932
|
21480
21490
|
|
21481
21491
|
Implementation:
|
21482
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
21492
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L927-L929
|
21483
21493
|
|
21484
21494
|
|
21485
21495
|
|
@@ -21508,7 +21518,7 @@ class Function(SharedObject, PrintableCommon):
|
|
21508
21518
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L944
|
21509
21519
|
|
21510
21520
|
Implementation:
|
21511
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
21521
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1542-L1548
|
21512
21522
|
|
21513
21523
|
|
21514
21524
|
|
@@ -21531,7 +21541,7 @@ class Function(SharedObject, PrintableCommon):
|
|
21531
21541
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L944
|
21532
21542
|
|
21533
21543
|
Implementation:
|
21534
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
21544
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1542-L1548
|
21535
21545
|
|
21536
21546
|
|
21537
21547
|
|
@@ -21557,7 +21567,7 @@ class Function(SharedObject, PrintableCommon):
|
|
21557
21567
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L940
|
21558
21568
|
|
21559
21569
|
Implementation:
|
21560
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
21570
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1526-L1532
|
21561
21571
|
|
21562
21572
|
|
21563
21573
|
|
@@ -21615,7 +21625,7 @@ class Function(SharedObject, PrintableCommon):
|
|
21615
21625
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L949
|
21616
21626
|
|
21617
21627
|
Implementation:
|
21618
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
21628
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1566-L1568
|
21619
21629
|
|
21620
21630
|
|
21621
21631
|
|
@@ -21638,7 +21648,7 @@ class Function(SharedObject, PrintableCommon):
|
|
21638
21648
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L949
|
21639
21649
|
|
21640
21650
|
Implementation:
|
21641
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
21651
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1566-L1568
|
21642
21652
|
|
21643
21653
|
|
21644
21654
|
|
@@ -21664,7 +21674,7 @@ class Function(SharedObject, PrintableCommon):
|
|
21664
21674
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L945
|
21665
21675
|
|
21666
21676
|
Implementation:
|
21667
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
21677
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1558-L1560
|
21668
21678
|
|
21669
21679
|
|
21670
21680
|
|
@@ -21722,7 +21732,7 @@ class Function(SharedObject, PrintableCommon):
|
|
21722
21732
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L962
|
21723
21733
|
|
21724
21734
|
Implementation:
|
21725
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
21735
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1550-L1556
|
21726
21736
|
|
21727
21737
|
|
21728
21738
|
|
@@ -21745,7 +21755,7 @@ class Function(SharedObject, PrintableCommon):
|
|
21745
21755
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L962
|
21746
21756
|
|
21747
21757
|
Implementation:
|
21748
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
21758
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1550-L1556
|
21749
21759
|
|
21750
21760
|
|
21751
21761
|
|
@@ -21771,7 +21781,7 @@ class Function(SharedObject, PrintableCommon):
|
|
21771
21781
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L958
|
21772
21782
|
|
21773
21783
|
Implementation:
|
21774
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
21784
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1534-L1540
|
21775
21785
|
|
21776
21786
|
|
21777
21787
|
|
@@ -21829,7 +21839,7 @@ class Function(SharedObject, PrintableCommon):
|
|
21829
21839
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L967
|
21830
21840
|
|
21831
21841
|
Implementation:
|
21832
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
21842
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1570-L1572
|
21833
21843
|
|
21834
21844
|
|
21835
21845
|
|
@@ -21852,7 +21862,7 @@ class Function(SharedObject, PrintableCommon):
|
|
21852
21862
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L967
|
21853
21863
|
|
21854
21864
|
Implementation:
|
21855
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
21865
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1570-L1572
|
21856
21866
|
|
21857
21867
|
|
21858
21868
|
|
@@ -21878,7 +21888,7 @@ class Function(SharedObject, PrintableCommon):
|
|
21878
21888
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L963
|
21879
21889
|
|
21880
21890
|
Implementation:
|
21881
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
21891
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1562-L1564
|
21882
21892
|
|
21883
21893
|
|
21884
21894
|
|
@@ -21932,7 +21942,7 @@ class Function(SharedObject, PrintableCommon):
|
|
21932
21942
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L974
|
21933
21943
|
|
21934
21944
|
Implementation:
|
21935
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
21945
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1574-L1576
|
21936
21946
|
|
21937
21947
|
|
21938
21948
|
|
@@ -21957,7 +21967,7 @@ class Function(SharedObject, PrintableCommon):
|
|
21957
21967
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L975
|
21958
21968
|
|
21959
21969
|
Implementation:
|
21960
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
21970
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1578-L1580
|
21961
21971
|
|
21962
21972
|
|
21963
21973
|
|
@@ -21982,7 +21992,7 @@ class Function(SharedObject, PrintableCommon):
|
|
21982
21992
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L976
|
21983
21993
|
|
21984
21994
|
Implementation:
|
21985
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
21995
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1582-L1584
|
21986
21996
|
|
21987
21997
|
|
21988
21998
|
|
@@ -22007,7 +22017,7 @@ class Function(SharedObject, PrintableCommon):
|
|
22007
22017
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L977
|
22008
22018
|
|
22009
22019
|
Implementation:
|
22010
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
22020
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1586-L1588
|
22011
22021
|
|
22012
22022
|
|
22013
22023
|
|
@@ -22041,7 +22051,7 @@ class Function(SharedObject, PrintableCommon):
|
|
22041
22051
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L996
|
22042
22052
|
|
22043
22053
|
Implementation:
|
22044
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
22054
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1626-L1628
|
22045
22055
|
|
22046
22056
|
|
22047
22057
|
|
@@ -22066,7 +22076,7 @@ class Function(SharedObject, PrintableCommon):
|
|
22066
22076
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L988
|
22067
22077
|
|
22068
22078
|
Implementation:
|
22069
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
22079
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1594-L1596
|
22070
22080
|
|
22071
22081
|
|
22072
22082
|
|
@@ -22094,7 +22104,7 @@ class Function(SharedObject, PrintableCommon):
|
|
22094
22104
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L987
|
22095
22105
|
|
22096
22106
|
Implementation:
|
22097
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
22107
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1590-L1592
|
22098
22108
|
|
22099
22109
|
|
22100
22110
|
|
@@ -22122,7 +22132,7 @@ class Function(SharedObject, PrintableCommon):
|
|
22122
22132
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L991
|
22123
22133
|
|
22124
22134
|
Implementation:
|
22125
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
22135
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1606-L1608
|
22126
22136
|
|
22127
22137
|
|
22128
22138
|
|
@@ -22150,7 +22160,7 @@ class Function(SharedObject, PrintableCommon):
|
|
22150
22160
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L992
|
22151
22161
|
|
22152
22162
|
Implementation:
|
22153
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
22163
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1610-L1612
|
22154
22164
|
|
22155
22165
|
|
22156
22166
|
|
@@ -22178,7 +22188,7 @@ class Function(SharedObject, PrintableCommon):
|
|
22178
22188
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L996
|
22179
22189
|
|
22180
22190
|
Implementation:
|
22181
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
22191
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1626-L1628
|
22182
22192
|
|
22183
22193
|
|
22184
22194
|
|
@@ -22206,7 +22216,7 @@ class Function(SharedObject, PrintableCommon):
|
|
22206
22216
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L995
|
22207
22217
|
|
22208
22218
|
Implementation:
|
22209
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
22219
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1622-L1624
|
22210
22220
|
|
22211
22221
|
|
22212
22222
|
|
@@ -22243,7 +22253,7 @@ class Function(SharedObject, PrintableCommon):
|
|
22243
22253
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L998
|
22244
22254
|
|
22245
22255
|
Implementation:
|
22246
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
22256
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1634-L1636
|
22247
22257
|
|
22248
22258
|
|
22249
22259
|
|
@@ -22268,7 +22278,7 @@ class Function(SharedObject, PrintableCommon):
|
|
22268
22278
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L990
|
22269
22279
|
|
22270
22280
|
Implementation:
|
22271
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
22281
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1602-L1604
|
22272
22282
|
|
22273
22283
|
|
22274
22284
|
|
@@ -22296,7 +22306,7 @@ class Function(SharedObject, PrintableCommon):
|
|
22296
22306
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L989
|
22297
22307
|
|
22298
22308
|
Implementation:
|
22299
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
22309
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1598-L1600
|
22300
22310
|
|
22301
22311
|
|
22302
22312
|
|
@@ -22324,7 +22334,7 @@ class Function(SharedObject, PrintableCommon):
|
|
22324
22334
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L993
|
22325
22335
|
|
22326
22336
|
Implementation:
|
22327
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
22337
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1614-L1616
|
22328
22338
|
|
22329
22339
|
|
22330
22340
|
|
@@ -22352,7 +22362,7 @@ class Function(SharedObject, PrintableCommon):
|
|
22352
22362
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L994
|
22353
22363
|
|
22354
22364
|
Implementation:
|
22355
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
22365
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1618-L1620
|
22356
22366
|
|
22357
22367
|
|
22358
22368
|
|
@@ -22380,7 +22390,7 @@ class Function(SharedObject, PrintableCommon):
|
|
22380
22390
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L998
|
22381
22391
|
|
22382
22392
|
Implementation:
|
22383
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
22393
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1634-L1636
|
22384
22394
|
|
22385
22395
|
|
22386
22396
|
|
@@ -22408,7 +22418,7 @@ class Function(SharedObject, PrintableCommon):
|
|
22408
22418
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L997
|
22409
22419
|
|
22410
22420
|
Implementation:
|
22411
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
22421
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1630-L1632
|
22412
22422
|
|
22413
22423
|
|
22414
22424
|
|
@@ -22436,7 +22446,7 @@ class Function(SharedObject, PrintableCommon):
|
|
22436
22446
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L1004
|
22437
22447
|
|
22438
22448
|
Implementation:
|
22439
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
22449
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1666-L1668
|
22440
22450
|
|
22441
22451
|
|
22442
22452
|
|
@@ -22461,7 +22471,7 @@ class Function(SharedObject, PrintableCommon):
|
|
22461
22471
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L1009
|
22462
22472
|
|
22463
22473
|
Implementation:
|
22464
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
22474
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1159-L1161
|
22465
22475
|
|
22466
22476
|
|
22467
22477
|
|
@@ -22486,7 +22496,7 @@ class Function(SharedObject, PrintableCommon):
|
|
22486
22496
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L1014
|
22487
22497
|
|
22488
22498
|
Implementation:
|
22489
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
22499
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1642-L1648
|
22490
22500
|
|
22491
22501
|
|
22492
22502
|
|
@@ -22511,7 +22521,7 @@ class Function(SharedObject, PrintableCommon):
|
|
22511
22521
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L1019
|
22512
22522
|
|
22513
22523
|
Implementation:
|
22514
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
22524
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1650-L1656
|
22515
22525
|
|
22516
22526
|
|
22517
22527
|
|
@@ -22536,7 +22546,7 @@ class Function(SharedObject, PrintableCommon):
|
|
22536
22546
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L1024
|
22537
22547
|
|
22538
22548
|
Implementation:
|
22539
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
22549
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1670-L1676
|
22540
22550
|
|
22541
22551
|
|
22542
22552
|
|
@@ -22561,7 +22571,7 @@ class Function(SharedObject, PrintableCommon):
|
|
22561
22571
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L1030
|
22562
22572
|
|
22563
22573
|
Implementation:
|
22564
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
22574
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1734-L1740
|
22565
22575
|
|
22566
22576
|
|
22567
22577
|
|
@@ -22586,7 +22596,7 @@ class Function(SharedObject, PrintableCommon):
|
|
22586
22596
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L1035
|
22587
22597
|
|
22588
22598
|
Implementation:
|
22589
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
22599
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1678-L1684
|
22590
22600
|
|
22591
22601
|
|
22592
22602
|
|
@@ -22611,7 +22621,7 @@ class Function(SharedObject, PrintableCommon):
|
|
22611
22621
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L1040
|
22612
22622
|
|
22613
22623
|
Implementation:
|
22614
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
22624
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1702-L1708
|
22615
22625
|
|
22616
22626
|
|
22617
22627
|
|
@@ -22638,7 +22648,7 @@ class Function(SharedObject, PrintableCommon):
|
|
22638
22648
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L1047
|
22639
22649
|
|
22640
22650
|
Implementation:
|
22641
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
22651
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1710-L1716
|
22642
22652
|
|
22643
22653
|
|
22644
22654
|
|
@@ -22664,7 +22674,7 @@ class Function(SharedObject, PrintableCommon):
|
|
22664
22674
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L1052
|
22665
22675
|
|
22666
22676
|
Implementation:
|
22667
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
22677
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1718-L1724
|
22668
22678
|
|
22669
22679
|
|
22670
22680
|
|
@@ -22691,7 +22701,7 @@ class Function(SharedObject, PrintableCommon):
|
|
22691
22701
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L1059
|
22692
22702
|
|
22693
22703
|
Implementation:
|
22694
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
22704
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1726-L1732
|
22695
22705
|
|
22696
22706
|
|
22697
22707
|
|
@@ -22716,7 +22726,7 @@ class Function(SharedObject, PrintableCommon):
|
|
22716
22726
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L1064
|
22717
22727
|
|
22718
22728
|
Implementation:
|
22719
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
22729
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1686-L1692
|
22720
22730
|
|
22721
22731
|
|
22722
22732
|
|
@@ -22745,7 +22755,7 @@ class Function(SharedObject, PrintableCommon):
|
|
22745
22755
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L1072
|
22746
22756
|
|
22747
22757
|
Implementation:
|
22748
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
22758
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1694-L1700
|
22749
22759
|
|
22750
22760
|
|
22751
22761
|
|
@@ -22770,7 +22780,7 @@ class Function(SharedObject, PrintableCommon):
|
|
22770
22780
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L1078
|
22771
22781
|
|
22772
22782
|
Implementation:
|
22773
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
22783
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1658-L1660
|
22774
22784
|
|
22775
22785
|
|
22776
22786
|
|
@@ -22795,7 +22805,7 @@ class Function(SharedObject, PrintableCommon):
|
|
22795
22805
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L1079
|
22796
22806
|
|
22797
22807
|
Implementation:
|
22798
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
22808
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1662-L1664
|
22799
22809
|
|
22800
22810
|
|
22801
22811
|
|
@@ -22820,7 +22830,7 @@ class Function(SharedObject, PrintableCommon):
|
|
22820
22830
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L1085
|
22821
22831
|
|
22822
22832
|
Implementation:
|
22823
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
22833
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1058-L1058
|
22824
22834
|
|
22825
22835
|
|
22826
22836
|
|
@@ -22845,7 +22855,7 @@ class Function(SharedObject, PrintableCommon):
|
|
22845
22855
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L1090
|
22846
22856
|
|
22847
22857
|
Implementation:
|
22848
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
22858
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1060-L1060
|
22849
22859
|
|
22850
22860
|
|
22851
22861
|
|
@@ -22870,7 +22880,7 @@ class Function(SharedObject, PrintableCommon):
|
|
22870
22880
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L1095
|
22871
22881
|
|
22872
22882
|
Implementation:
|
22873
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
22883
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1062-L1062
|
22874
22884
|
|
22875
22885
|
|
22876
22886
|
|
@@ -22895,7 +22905,7 @@ class Function(SharedObject, PrintableCommon):
|
|
22895
22905
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L1100
|
22896
22906
|
|
22897
22907
|
Implementation:
|
22898
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
22908
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1064-L1064
|
22899
22909
|
|
22900
22910
|
|
22901
22911
|
|
@@ -22920,7 +22930,7 @@ class Function(SharedObject, PrintableCommon):
|
|
22920
22930
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L1137
|
22921
22931
|
|
22922
22932
|
Implementation:
|
22923
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
22933
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1281-L1288
|
22924
22934
|
|
22925
22935
|
|
22926
22936
|
|
@@ -22948,7 +22958,7 @@ class Function(SharedObject, PrintableCommon):
|
|
22948
22958
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L1144
|
22949
22959
|
|
22950
22960
|
Implementation:
|
22951
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
22961
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1638-L1640
|
22952
22962
|
|
22953
22963
|
|
22954
22964
|
|
@@ -23033,7 +23043,7 @@ class Function(SharedObject, PrintableCommon):
|
|
23033
23043
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L1189
|
23034
23044
|
|
23035
23045
|
Implementation:
|
23036
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
23046
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1754-L1760
|
23037
23047
|
|
23038
23048
|
|
23039
23049
|
|
@@ -23056,7 +23066,7 @@ class Function(SharedObject, PrintableCommon):
|
|
23056
23066
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L1192
|
23057
23067
|
|
23058
23068
|
Implementation:
|
23059
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
23069
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1762-L1767
|
23060
23070
|
|
23061
23071
|
|
23062
23072
|
|
@@ -23080,7 +23090,7 @@ class Function(SharedObject, PrintableCommon):
|
|
23080
23090
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L1195
|
23081
23091
|
|
23082
23092
|
Implementation:
|
23083
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
23093
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1769-L1778
|
23084
23094
|
|
23085
23095
|
|
23086
23096
|
|
@@ -23103,7 +23113,7 @@ class Function(SharedObject, PrintableCommon):
|
|
23103
23113
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L1199
|
23104
23114
|
|
23105
23115
|
Implementation:
|
23106
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
23116
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1742-L1744
|
23107
23117
|
|
23108
23118
|
|
23109
23119
|
|
@@ -23126,7 +23136,7 @@ class Function(SharedObject, PrintableCommon):
|
|
23126
23136
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L1202
|
23127
23137
|
|
23128
23138
|
Implementation:
|
23129
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
23139
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1746-L1748
|
23130
23140
|
|
23131
23141
|
|
23132
23142
|
|
@@ -23151,7 +23161,7 @@ class Function(SharedObject, PrintableCommon):
|
|
23151
23161
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L1212
|
23152
23162
|
|
23153
23163
|
Implementation:
|
23154
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
23164
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1804-L1811
|
23155
23165
|
|
23156
23166
|
|
23157
23167
|
|
@@ -23177,7 +23187,7 @@ class Function(SharedObject, PrintableCommon):
|
|
23177
23187
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L1222
|
23178
23188
|
|
23179
23189
|
Implementation:
|
23180
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
23190
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1822-L1828
|
23181
23191
|
|
23182
23192
|
|
23183
23193
|
|
@@ -23198,7 +23208,7 @@ class Function(SharedObject, PrintableCommon):
|
|
23198
23208
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L1222
|
23199
23209
|
|
23200
23210
|
Implementation:
|
23201
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
23211
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1822-L1828
|
23202
23212
|
|
23203
23213
|
|
23204
23214
|
|
@@ -23222,7 +23232,7 @@ class Function(SharedObject, PrintableCommon):
|
|
23222
23232
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L1217
|
23223
23233
|
|
23224
23234
|
Implementation:
|
23225
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
23235
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1813-L1820
|
23226
23236
|
|
23227
23237
|
|
23228
23238
|
|
@@ -23250,7 +23260,7 @@ class Function(SharedObject, PrintableCommon):
|
|
23250
23260
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L1227
|
23251
23261
|
|
23252
23262
|
Implementation:
|
23253
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
23263
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1830-L1837
|
23254
23264
|
|
23255
23265
|
|
23256
23266
|
|
@@ -23281,7 +23291,7 @@ class Function(SharedObject, PrintableCommon):
|
|
23281
23291
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L1234
|
23282
23292
|
|
23283
23293
|
Implementation:
|
23284
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
23294
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1839-L1855
|
23285
23295
|
|
23286
23296
|
|
23287
23297
|
|
@@ -23315,7 +23325,7 @@ class Function(SharedObject, PrintableCommon):
|
|
23315
23325
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L1242
|
23316
23326
|
|
23317
23327
|
Implementation:
|
23318
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
23328
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1857-L1874
|
23319
23329
|
|
23320
23330
|
|
23321
23331
|
|
@@ -23338,7 +23348,7 @@ class Function(SharedObject, PrintableCommon):
|
|
23338
23348
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L1245
|
23339
23349
|
|
23340
23350
|
Implementation:
|
23341
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
23351
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1903-L1905
|
23342
23352
|
|
23343
23353
|
|
23344
23354
|
|
@@ -23427,7 +23437,7 @@ class Function(SharedObject, PrintableCommon):
|
|
23427
23437
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L101
|
23428
23438
|
|
23429
23439
|
Implementation:
|
23430
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
23440
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L109-L113
|
23431
23441
|
|
23432
23442
|
|
23433
23443
|
|
@@ -23451,7 +23461,7 @@ class Function(SharedObject, PrintableCommon):
|
|
23451
23461
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L111
|
23452
23462
|
|
23453
23463
|
Implementation:
|
23454
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
23464
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L188-L192
|
23455
23465
|
|
23456
23466
|
|
23457
23467
|
|
@@ -23475,7 +23485,7 @@ class Function(SharedObject, PrintableCommon):
|
|
23475
23485
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L105
|
23476
23486
|
|
23477
23487
|
Implementation:
|
23478
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
23488
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L115-L121
|
23479
23489
|
|
23480
23490
|
|
23481
23491
|
|
@@ -23499,7 +23509,7 @@ class Function(SharedObject, PrintableCommon):
|
|
23499
23509
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L70
|
23500
23510
|
|
23501
23511
|
Implementation:
|
23502
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
23512
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L57-L58
|
23503
23513
|
|
23504
23514
|
|
23505
23515
|
|
@@ -23523,7 +23533,7 @@ class Function(SharedObject, PrintableCommon):
|
|
23523
23533
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L81
|
23524
23534
|
|
23525
23535
|
Implementation:
|
23526
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
23536
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L95-L99
|
23527
23537
|
|
23528
23538
|
|
23529
23539
|
|
@@ -23547,7 +23557,7 @@ class Function(SharedObject, PrintableCommon):
|
|
23547
23557
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L91
|
23548
23558
|
|
23549
23559
|
Implementation:
|
23550
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
23560
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L182-L186
|
23551
23561
|
|
23552
23562
|
|
23553
23563
|
|
@@ -23571,7 +23581,7 @@ class Function(SharedObject, PrintableCommon):
|
|
23571
23581
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L85
|
23572
23582
|
|
23573
23583
|
Implementation:
|
23574
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
23584
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L101-L107
|
23575
23585
|
|
23576
23586
|
|
23577
23587
|
|
@@ -23595,7 +23605,7 @@ class Function(SharedObject, PrintableCommon):
|
|
23595
23605
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L75
|
23596
23606
|
|
23597
23607
|
Implementation:
|
23598
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
23608
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L91-L93
|
23599
23609
|
|
23600
23610
|
|
23601
23611
|
|
@@ -23673,7 +23683,7 @@ def Function_jit(*args) -> "casadi::Function":
|
|
23673
23683
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L189
|
23674
23684
|
|
23675
23685
|
Implementation:
|
23676
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
23686
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L293-L305
|
23677
23687
|
|
23678
23688
|
|
23679
23689
|
|
@@ -23725,7 +23735,7 @@ def Function_jit(*args) -> "casadi::Function":
|
|
23725
23735
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L185
|
23726
23736
|
|
23727
23737
|
Implementation:
|
23728
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
23738
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L284-L291
|
23729
23739
|
|
23730
23740
|
|
23731
23741
|
|
@@ -23780,7 +23790,7 @@ def Function_jit(*args) -> "casadi::Function":
|
|
23780
23790
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L189
|
23781
23791
|
|
23782
23792
|
Implementation:
|
23783
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
23793
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L293-L305
|
23784
23794
|
|
23785
23795
|
|
23786
23796
|
|
@@ -23928,7 +23938,7 @@ class FunctionBuffer(_object):
|
|
23928
23938
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L1323
|
23929
23939
|
|
23930
23940
|
Implementation:
|
23931
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
23941
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1943-L1948
|
23932
23942
|
|
23933
23943
|
|
23934
23944
|
|
@@ -23957,7 +23967,7 @@ class FunctionBuffer(_object):
|
|
23957
23967
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L1332
|
23958
23968
|
|
23959
23969
|
Implementation:
|
23960
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
23970
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1949-L1954
|
23961
23971
|
|
23962
23972
|
|
23963
23973
|
|
@@ -23980,7 +23990,7 @@ class FunctionBuffer(_object):
|
|
23980
23990
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L1334
|
23981
23991
|
|
23982
23992
|
Implementation:
|
23983
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
23993
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1962-L1964
|
23984
23994
|
|
23985
23995
|
|
23986
23996
|
|
@@ -24055,7 +24065,7 @@ class FunctionBuffer(_object):
|
|
24055
24065
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L1309
|
24056
24066
|
|
24057
24067
|
Implementation:
|
24058
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
24068
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1907-L1915
|
24059
24069
|
|
24060
24070
|
|
24061
24071
|
|
@@ -24485,6 +24495,12 @@ def integrator(*args) -> "casadi::Function":
|
|
24485
24495
|
| | | formulation | |
|
24486
24496
|
| | | [false] | |
|
24487
24497
|
+------------------+-----------------+------------------+------------------+
|
24498
|
+
| external_transfo | OT_VECTORVECTOR | List of external | casadi::Function |
|
24499
|
+
| rm | | _transform | Internal |
|
24500
|
+
| | | instruction | |
|
24501
|
+
| | | arguments. | |
|
24502
|
+
| | | Default: empty | |
|
24503
|
+
+------------------+-----------------+------------------+------------------+
|
24488
24504
|
| fd_method | OT_STRING | Method for | casadi::Function |
|
24489
24505
|
| | | finite | Internal |
|
24490
24506
|
| | | differencing | |
|
@@ -25885,6 +25901,12 @@ def conic(*args) -> "casadi::Function":
|
|
25885
25901
|
| | | evaluation fails | |
|
25886
25902
|
| | | (default true). | |
|
25887
25903
|
+------------------+-----------------+------------------+------------------+
|
25904
|
+
| external_transfo | OT_VECTORVECTOR | List of external | casadi::Function |
|
25905
|
+
| rm | | _transform | Internal |
|
25906
|
+
| | | instruction | |
|
25907
|
+
| | | arguments. | |
|
25908
|
+
| | | Default: empty | |
|
25909
|
+
+------------------+-----------------+------------------+------------------+
|
25888
25910
|
| fd_method | OT_STRING | Method for | casadi::Function |
|
25889
25911
|
| | | finite | Internal |
|
25890
25912
|
| | | differencing | |
|
@@ -26151,6 +26173,8 @@ def conic(*args) -> "casadi::Function":
|
|
26151
26173
|
|
26152
26174
|
- cplex
|
26153
26175
|
|
26176
|
+
- fatrop
|
26177
|
+
|
26154
26178
|
- gurobi
|
26155
26179
|
|
26156
26180
|
- highs
|
@@ -26309,6 +26333,61 @@ def conic(*args) -> "casadi::Function":
|
|
26309
26333
|
|
26310
26334
|
|
26311
26335
|
|
26336
|
+
--------------------------------------------------------------------------------
|
26337
|
+
|
26338
|
+
fatrop
|
26339
|
+
------
|
26340
|
+
|
26341
|
+
|
26342
|
+
|
26343
|
+
Interface to Fatrop Solver
|
26344
|
+
|
26345
|
+
In order to use this interface, you must:
|
26346
|
+
|
26347
|
+
Decision variables must only by state and control, and the variable
|
26348
|
+
|
26349
|
+
ordering must be [x0 u0 x1 u1 ...]
|
26350
|
+
|
26351
|
+
The constraints must be in order: [ gap0 lincon0 gap1 lincon1 ]
|
26352
|
+
|
26353
|
+
gap: Ak+1 = Ak xk + Bk uk lincon: yk= Ck xk + Dk uk
|
26354
|
+
|
26355
|
+
|
26356
|
+
|
26357
|
+
::
|
26358
|
+
|
26359
|
+
A0 B0 -I
|
26360
|
+
C0 D0
|
26361
|
+
A1 B1 -I
|
26362
|
+
C1 D1
|
26363
|
+
|
26364
|
+
|
26365
|
+
|
26366
|
+
where I must be a diagonal sparse matrix
|
26367
|
+
Either supply all of N, nx, ng, nu
|
26368
|
+
options or rely on automatic
|
26369
|
+
detection
|
26370
|
+
|
26371
|
+
Extra doc: https://github.com/casadi/casadi/wiki/L_27g
|
26372
|
+
|
26373
|
+
>List of available options
|
26374
|
+
|
26375
|
+
+--------+--------------+-----------------------------------------------+
|
26376
|
+
| Id | Type | Description |
|
26377
|
+
+========+==============+===============================================+
|
26378
|
+
| N | OT_INT | OCP horizon |
|
26379
|
+
+--------+--------------+-----------------------------------------------+
|
26380
|
+
| fatrop | OT_DICT | Options to be passed to fatrop |
|
26381
|
+
+--------+--------------+-----------------------------------------------+
|
26382
|
+
| ng | OT_INTVECTOR | Number of non-dynamic constraints, length N+1 |
|
26383
|
+
+--------+--------------+-----------------------------------------------+
|
26384
|
+
| nu | OT_INTVECTOR | Number of controls, length N |
|
26385
|
+
+--------+--------------+-----------------------------------------------+
|
26386
|
+
| nx | OT_INTVECTOR | Number of states, length N+1 |
|
26387
|
+
+--------+--------------+-----------------------------------------------+
|
26388
|
+
|
26389
|
+
|
26390
|
+
|
26312
26391
|
--------------------------------------------------------------------------------
|
26313
26392
|
|
26314
26393
|
gurobi
|
@@ -26372,7 +26451,7 @@ def conic(*args) -> "casadi::Function":
|
|
26372
26451
|
|
26373
26452
|
|
26374
26453
|
|
26375
|
-
Interface to
|
26454
|
+
Interface to HPIPM Solver
|
26376
26455
|
|
26377
26456
|
In order to use this interface, you must:
|
26378
26457
|
|
@@ -27321,6 +27400,7 @@ def nlpsol(*args) -> "casadi::Function":
|
|
27321
27400
|
nlpsol(str name, str solver, dict:SX nlp, dict opts) -> Function
|
27322
27401
|
nlpsol(str name, str solver, dict:MX nlp, dict opts) -> Function
|
27323
27402
|
nlpsol(str name, str solver, str fname, dict opts) -> Function
|
27403
|
+
nlpsol(str name, str solver, Function nlp, dict opts) -> Function
|
27324
27404
|
|
27325
27405
|
|
27326
27406
|
.......
|
@@ -27633,6 +27713,12 @@ def nlpsol(*args) -> "casadi::Function":
|
|
27633
27713
|
| | | formulation | |
|
27634
27714
|
| | | [false] | |
|
27635
27715
|
+------------------+-----------------+------------------+------------------+
|
27716
|
+
| external_transfo | OT_VECTORVECTOR | List of external | casadi::Function |
|
27717
|
+
| rm | | _transform | Internal |
|
27718
|
+
| | | instruction | |
|
27719
|
+
| | | arguments. | |
|
27720
|
+
| | | Default: empty | |
|
27721
|
+
+------------------+-----------------+------------------+------------------+
|
27636
27722
|
| fd_method | OT_STRING | Method for | casadi::Function |
|
27637
27723
|
| | | finite | Internal |
|
27638
27724
|
| | | differencing | |
|
@@ -28943,6 +29029,7 @@ def nlpsol(*args) -> "casadi::Function":
|
|
28943
29029
|
nlpsol(str name, str solver, NlpBuilder nl, dict opts)
|
28944
29030
|
nlpsol(str name, str solver, dict:MX nlp, dict opts)
|
28945
29031
|
nlpsol(str name, str solver, str fname, dict opts)
|
29032
|
+
nlpsol(str name, str solver, Function nlp, dict opts)
|
28946
29033
|
|
28947
29034
|
|
28948
29035
|
|
@@ -29385,10 +29472,10 @@ def nlpsol_options(*args) -> "std::vector< std::string,std::allocator< std::stri
|
|
29385
29472
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1t5
|
29386
29473
|
|
29387
29474
|
Doc source:
|
29388
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.hpp#
|
29475
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.hpp#L801
|
29389
29476
|
|
29390
29477
|
Implementation:
|
29391
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.cpp#
|
29478
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.cpp#L801-L803
|
29392
29479
|
|
29393
29480
|
|
29394
29481
|
|
@@ -29409,10 +29496,10 @@ def nlpsol_option_type(*args) -> "std::string":
|
|
29409
29496
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1t6
|
29410
29497
|
|
29411
29498
|
Doc source:
|
29412
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.hpp#
|
29499
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.hpp#L805
|
29413
29500
|
|
29414
29501
|
Implementation:
|
29415
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.cpp#
|
29502
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.cpp#L805-L807
|
29416
29503
|
|
29417
29504
|
|
29418
29505
|
|
@@ -29433,10 +29520,10 @@ def nlpsol_option_info(*args) -> "std::string":
|
|
29433
29520
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1t7
|
29434
29521
|
|
29435
29522
|
Doc source:
|
29436
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.hpp#
|
29523
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.hpp#L809
|
29437
29524
|
|
29438
29525
|
Implementation:
|
29439
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.cpp#
|
29526
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.cpp#L809-L811
|
29440
29527
|
|
29441
29528
|
|
29442
29529
|
|
@@ -29767,6 +29854,12 @@ def rootfinder(*args) -> "casadi::Function":
|
|
29767
29854
|
| | | formulation | |
|
29768
29855
|
| | | [false] | |
|
29769
29856
|
+------------------+-----------------+------------------+------------------+
|
29857
|
+
| external_transfo | OT_VECTORVECTOR | List of external | casadi::Function |
|
29858
|
+
| rm | | _transform | Internal |
|
29859
|
+
| | | instruction | |
|
29860
|
+
| | | arguments. | |
|
29861
|
+
| | | Default: empty | |
|
29862
|
+
+------------------+-----------------+------------------+------------------+
|
29770
29863
|
| fd_method | OT_STRING | Method for | casadi::Function |
|
29771
29864
|
| | | finite | Internal |
|
29772
29865
|
| | | differencing | |
|
@@ -31554,6 +31647,12 @@ def dplesol(*args) -> "casadi::DMVector":
|
|
31554
31647
|
| | | greater than | |
|
31555
31648
|
| | | 1-eps_unstable | |
|
31556
31649
|
+------------------+-----------------+------------------+------------------+
|
31650
|
+
| external_transfo | OT_VECTORVECTOR | List of external | casadi::Function |
|
31651
|
+
| rm | | _transform | Internal |
|
31652
|
+
| | | instruction | |
|
31653
|
+
| | | arguments. | |
|
31654
|
+
| | | Default: empty | |
|
31655
|
+
+------------------+-----------------+------------------+------------------+
|
31557
31656
|
| fd_method | OT_STRING | Method for | casadi::Function |
|
31558
31657
|
| | | finite | Internal |
|
31559
31658
|
| | | differencing | |
|
@@ -32328,6 +32427,12 @@ def expmsol(*args) -> "casadi::Function":
|
|
32328
32427
|
| | | evaluation fails | |
|
32329
32428
|
| | | (default true). | |
|
32330
32429
|
+------------------+-----------------+------------------+------------------+
|
32430
|
+
| external_transfo | OT_VECTORVECTOR | List of external | casadi::Function |
|
32431
|
+
| rm | | _transform | Internal |
|
32432
|
+
| | | instruction | |
|
32433
|
+
| | | arguments. | |
|
32434
|
+
| | | Default: empty | |
|
32435
|
+
+------------------+-----------------+------------------+------------------+
|
32331
32436
|
| fd_method | OT_STRING | Method for | casadi::Function |
|
32332
32437
|
| | | finite | Internal |
|
32333
32438
|
| | | differencing | |
|
@@ -32993,6 +33098,12 @@ def interpolant(*args) -> "casadi::Function":
|
|
32993
33098
|
| | | evaluation fails | |
|
32994
33099
|
| | | (default true). | |
|
32995
33100
|
+------------------+-----------------+------------------+------------------+
|
33101
|
+
| external_transfo | OT_VECTORVECTOR | List of external | casadi::Function |
|
33102
|
+
| rm | | _transform | Internal |
|
33103
|
+
| | | instruction | |
|
33104
|
+
| | | arguments. | |
|
33105
|
+
| | | Default: empty | |
|
33106
|
+
+------------------+-----------------+------------------+------------------+
|
32996
33107
|
| fd_method | OT_STRING | Method for | casadi::Function |
|
32997
33108
|
| | | finite | Internal |
|
32998
33109
|
| | | differencing | |
|
@@ -33526,7 +33637,7 @@ class CodeGenerator(_object):
|
|
33526
33637
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L46
|
33527
33638
|
|
33528
33639
|
Implementation:
|
33529
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L35-
|
33640
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L35-L183
|
33530
33641
|
|
33531
33642
|
|
33532
33643
|
|
@@ -33552,7 +33663,7 @@ class CodeGenerator(_object):
|
|
33552
33663
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L49
|
33553
33664
|
|
33554
33665
|
Implementation:
|
33555
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
33666
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L304-L347
|
33556
33667
|
|
33557
33668
|
|
33558
33669
|
|
@@ -33575,7 +33686,7 @@ class CodeGenerator(_object):
|
|
33575
33686
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L57
|
33576
33687
|
|
33577
33688
|
Implementation:
|
33578
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
33689
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L349-L353
|
33579
33690
|
|
33580
33691
|
|
33581
33692
|
|
@@ -33604,7 +33715,7 @@ class CodeGenerator(_object):
|
|
33604
33715
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L66
|
33605
33716
|
|
33606
33717
|
Implementation:
|
33607
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
33718
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L441-L495
|
33608
33719
|
|
33609
33720
|
|
33610
33721
|
|
@@ -33629,7 +33740,7 @@ class CodeGenerator(_object):
|
|
33629
33740
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L69
|
33630
33741
|
|
33631
33742
|
Implementation:
|
33632
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
33743
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L986-L1006
|
33633
33744
|
|
33634
33745
|
|
33635
33746
|
|
@@ -34626,7 +34737,7 @@ def gt(*args) -> "double":
|
|
34626
34737
|
|
34627
34738
|
def ge(*args) -> "double":
|
34628
34739
|
"""
|
34629
|
-
Logical greater or equal to: (x,y) -> x
|
34740
|
+
Logical greater or equal to: (x,y) -> x >= y.
|
34630
34741
|
|
34631
34742
|
::
|
34632
34743
|
|
@@ -41644,6 +41755,50 @@ def detect_simple_bounds(*args) -> "std::vector< casadi_int > &, casadi::MX &, c
|
|
41644
41755
|
|
41645
41756
|
"""
|
41646
41757
|
return _casadi.detect_simple_bounds(*args)
|
41758
|
+
|
41759
|
+
def external_transform(*args) -> "casadi::Function":
|
41760
|
+
"""
|
41761
|
+
[INTERNAL]
|
41762
|
+
|
41763
|
+
::
|
41764
|
+
|
41765
|
+
external_transform(str name, str op, Function f, dict opts) -> Function
|
41766
|
+
|
41767
|
+
Apply a transformation defined externally.
|
41768
|
+
|
41769
|
+
Parameters:
|
41770
|
+
-----------
|
41771
|
+
|
41772
|
+
name:
|
41773
|
+
Name of the shared library
|
41774
|
+
|
41775
|
+
op:
|
41776
|
+
Name of the operation
|
41777
|
+
|
41778
|
+
f:
|
41779
|
+
Function to transform
|
41780
|
+
|
41781
|
+
opts:
|
41782
|
+
Options
|
41783
|
+
|
41784
|
+
::
|
41785
|
+
|
41786
|
+
Extra doc: https://github.com/casadi/casadi/wiki/L_27i
|
41787
|
+
|
41788
|
+
|
41789
|
+
|
41790
|
+
|
41791
|
+
Doc source:
|
41792
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/tools.hpp#L45
|
41793
|
+
|
41794
|
+
Implementation:
|
41795
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/tools.cpp#L45-L77
|
41796
|
+
|
41797
|
+
|
41798
|
+
|
41799
|
+
|
41800
|
+
"""
|
41801
|
+
return _casadi.external_transform(*args)
|
41647
41802
|
class NlpBuilder(PrintableCommon):
|
41648
41803
|
"""
|
41649
41804
|
[INTERNAL]
|