casadi 3.6.2__cp311-none-manylinux2014_i686.whl → 3.6.4__cp311-none-manylinux2014_i686.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 +217 -60
- casadi/cbc +0 -0
- casadi/clp +0 -0
- casadi/cmake/alpaqa/alpaqaConfig.cmake +24 -0
- casadi/cmake/alpaqa/alpaqaConfigVersion.cmake +70 -0
- casadi/cmake/alpaqa/alpaqaTargets-release.cmake +29 -0
- casadi/cmake/alpaqa/alpaqaTargets.cmake +131 -0
- casadi/cmake/casadi-config-version.cmake +1 -1
- casadi/cmake/casadi-config.cmake +4 -0
- casadi/cmake/highs/highs-config.cmake +18 -4
- casadi/cmake/highs/highs-targets-release.cmake +3 -3
- casadi/cmake/highs/highs-targets.cmake +1 -1
- casadi/cmake/sleqp/sleqp-config-version.cmake +70 -0
- casadi/cmake/sleqp/sleqp-config.cmake +1 -0
- casadi/cmake/sleqp/sleqp-targets-release.cmake +20 -0
- casadi/cmake/sleqp/sleqp-targets.cmake +102 -0
- casadi/cmake/trlib/trlib-config-release.cmake +19 -0
- casadi/cmake/trlib/trlib-config-version.cmake +88 -0
- casadi/cmake/trlib/trlib-config.cmake +107 -0
- casadi/highs +0 -0
- casadi/include/casadi/casadi.i +20 -3
- casadi/include/casadi/config.h +8 -8
- casadi/include/casadi/core/calculus.hpp +1 -1
- casadi/include/casadi/core/code_generator.hpp +10 -0
- casadi/include/casadi/core/fmu.hpp +224 -0
- casadi/include/casadi/core/generic_matrix.hpp +4 -2
- casadi/include/casadi/core/nlpsol.hpp +0 -2
- casadi/include/casadi/core/runtime/casadi_finite_diff.hpp +204 -11
- casadi/include/casadi/core/serializing_stream.hpp +12 -0
- casadi/include/casadi/core/sparsity_interface.hpp +55 -1
- casadi/include/casadi/doc.i +916 -462
- casadi/include/casadi/doc_merged.i +492 -176
- casadi/include/casadi/mem.h +13 -2
- casadi/include/casadi/valgrind-casadi.supp +82 -0
- casadi/include/casadi/valgrind-python.supp +39 -0
- casadi/include/highs/HConfig.h +4 -7
- casadi/include/highs/Highs.h +240 -51
- casadi/include/highs/filereaderlp/builder.hpp +12 -13
- casadi/include/highs/filereaderlp/model.hpp +32 -35
- casadi/include/highs/fortran/highs_fortran_api.mod +0 -0
- casadi/include/highs/interfaces/highs_c_api.h +964 -577
- casadi/include/highs/io/Filereader.h +2 -4
- casadi/include/highs/io/FilereaderEms.h +2 -4
- casadi/include/highs/io/FilereaderLp.h +2 -4
- casadi/include/highs/io/FilereaderMps.h +2 -4
- casadi/include/highs/io/HMPSIO.h +2 -4
- casadi/include/highs/io/HMpsFF.h +2 -4
- casadi/include/highs/io/HighsIO.h +19 -13
- casadi/include/highs/io/LoadOptions.h +7 -6
- casadi/include/highs/ipm/IpxWrapper.h +4 -5
- casadi/include/highs/lp_data/HConst.h +60 -15
- casadi/include/highs/lp_data/HStruct.h +32 -8
- casadi/include/highs/lp_data/HighsAnalysis.h +2 -4
- casadi/include/highs/lp_data/HighsCallback.h +33 -0
- casadi/include/highs/lp_data/HighsCallbackStruct.h +36 -0
- casadi/include/highs/lp_data/HighsDebug.h +2 -4
- casadi/include/highs/lp_data/HighsInfo.h +22 -23
- casadi/include/highs/lp_data/HighsInfoDebug.h +2 -4
- casadi/include/highs/lp_data/HighsLp.h +14 -6
- casadi/include/highs/lp_data/HighsLpSolverObject.h +6 -5
- casadi/include/highs/lp_data/HighsLpUtils.h +23 -12
- casadi/include/highs/lp_data/HighsModelUtils.h +22 -8
- casadi/include/highs/lp_data/HighsOptions.h +175 -106
- casadi/include/highs/lp_data/HighsRanging.h +2 -4
- casadi/include/highs/lp_data/HighsRuntimeOptions.h +21 -6
- casadi/include/highs/lp_data/HighsSolution.h +4 -4
- casadi/include/highs/lp_data/HighsSolutionDebug.h +2 -4
- casadi/include/highs/lp_data/HighsSolve.h +2 -4
- casadi/include/highs/lp_data/HighsStatus.h +2 -4
- casadi/include/highs/mip/HighsCliqueTable.h +18 -20
- casadi/include/highs/mip/HighsConflictPool.h +2 -4
- casadi/include/highs/mip/HighsCutGeneration.h +2 -4
- casadi/include/highs/mip/HighsCutPool.h +2 -4
- casadi/include/highs/mip/HighsDebugSol.h +2 -4
- casadi/include/highs/mip/HighsDomain.h +5 -5
- casadi/include/highs/mip/HighsDomainChange.h +2 -4
- casadi/include/highs/mip/HighsDynamicRowMatrix.h +2 -4
- casadi/include/highs/mip/HighsGFkSolve.h +2 -4
- casadi/include/highs/mip/HighsImplications.h +2 -4
- casadi/include/highs/mip/HighsLpAggregator.h +2 -4
- casadi/include/highs/mip/HighsLpRelaxation.h +2 -4
- casadi/include/highs/mip/HighsMipSolver.h +18 -6
- casadi/include/highs/mip/HighsMipSolverData.h +8 -4
- casadi/include/highs/mip/HighsModkSeparator.h +2 -4
- casadi/include/highs/mip/HighsNodeQueue.h +3 -9
- casadi/include/highs/mip/HighsObjectiveFunction.h +2 -4
- casadi/include/highs/mip/HighsPathSeparator.h +2 -4
- casadi/include/highs/mip/HighsPrimalHeuristics.h +2 -4
- casadi/include/highs/mip/HighsPseudocost.h +2 -4
- casadi/include/highs/mip/HighsRedcostFixing.h +2 -4
- casadi/include/highs/mip/HighsSearch.h +2 -4
- casadi/include/highs/mip/HighsSeparation.h +2 -4
- casadi/include/highs/mip/HighsSeparator.h +2 -4
- casadi/include/highs/mip/HighsTableauSeparator.h +2 -4
- casadi/include/highs/mip/HighsTransformedLp.h +2 -4
- casadi/include/highs/model/HighsHessian.h +3 -1
- casadi/include/highs/model/HighsModel.h +2 -0
- casadi/include/highs/parallel/HighsSpinMutex.h +2 -1
- casadi/include/highs/parallel/HighsSplitDeque.h +1 -1
- casadi/include/highs/parallel/HighsTaskExecutor.h +10 -2
- casadi/include/highs/presolve/HPresolve.h +9 -6
- casadi/include/highs/presolve/HPresolveAnalysis.h +5 -4
- casadi/include/highs/presolve/HighsPostsolveStack.h +50 -13
- casadi/include/highs/presolve/HighsSymmetry.h +2 -4
- casadi/include/highs/presolve/ICrash.h +4 -3
- casadi/include/highs/presolve/ICrashUtil.h +2 -2
- casadi/include/highs/presolve/ICrashX.h +4 -6
- casadi/include/highs/presolve/PresolveComponent.h +4 -42
- casadi/include/highs/qpsolver/a_asm.hpp +56 -0
- casadi/include/highs/qpsolver/a_quass.hpp +12 -0
- casadi/include/highs/qpsolver/quass.hpp +1 -4
- casadi/include/highs/simplex/HApp.h +14 -16
- casadi/include/highs/simplex/HEkk.h +12 -11
- casadi/include/highs/simplex/HEkkDual.h +2 -4
- casadi/include/highs/simplex/HEkkDualRHS.h +5 -6
- casadi/include/highs/simplex/HEkkDualRow.h +2 -4
- casadi/include/highs/simplex/HEkkPrimal.h +2 -4
- casadi/include/highs/simplex/HSimplex.h +2 -4
- casadi/include/highs/simplex/HSimplexDebug.h +2 -4
- casadi/include/highs/simplex/HSimplexNla.h +2 -4
- casadi/include/highs/simplex/HSimplexReport.h +3 -5
- casadi/include/highs/simplex/HighsSimplexAnalysis.h +2 -4
- casadi/include/highs/simplex/SimplexConst.h +7 -5
- casadi/include/highs/simplex/SimplexStruct.h +11 -5
- casadi/include/highs/simplex/SimplexTimer.h +2 -4
- casadi/include/highs/test/DevKkt.h +2 -4
- casadi/include/highs/test/KktCh2.h +2 -4
- casadi/include/highs/util/FactorTimer.h +2 -4
- casadi/include/highs/util/HFactor.h +2 -4
- casadi/include/highs/util/HFactorConst.h +2 -4
- casadi/include/highs/util/HFactorDebug.h +2 -4
- casadi/include/highs/util/HSet.h +3 -5
- casadi/include/highs/util/HVector.h +2 -4
- casadi/include/highs/util/HVectorBase.h +2 -4
- casadi/include/highs/util/HighsCDouble.h +2 -4
- casadi/include/highs/util/HighsComponent.h +2 -4
- casadi/include/highs/util/HighsDataStack.h +3 -5
- casadi/include/highs/util/HighsDisjointSets.h +8 -10
- casadi/include/highs/util/HighsHash.h +22 -7
- casadi/include/highs/util/HighsHashTree.h +25 -7
- casadi/include/highs/util/HighsInt.h +2 -4
- casadi/include/highs/util/HighsIntegers.h +2 -4
- casadi/include/highs/util/HighsLinearSumBounds.h +2 -4
- casadi/include/highs/util/HighsMatrixPic.h +2 -4
- casadi/include/highs/util/HighsMatrixSlice.h +2 -4
- casadi/include/highs/util/HighsMatrixUtils.h +2 -4
- casadi/include/highs/util/HighsRandom.h +2 -4
- casadi/include/highs/util/HighsRbTree.h +2 -4
- casadi/include/highs/util/HighsSort.h +2 -4
- casadi/include/highs/util/HighsSparseMatrix.h +11 -7
- casadi/include/highs/util/HighsSparseVectorSum.h +2 -4
- casadi/include/highs/util/HighsSplay.h +2 -4
- casadi/include/highs/util/HighsTimer.h +3 -4
- casadi/include/highs/util/HighsUtils.h +14 -4
- casadi/include/highs/util/stringutil.h +2 -4
- casadi/include/licenses/alpaqa-external/LICENSE +165 -0
- casadi/include/licenses/highs-external/LICENSE +1 -1
- casadi/include/licenses/sleqp-external/LICENSE +165 -0
- casadi/include/licenses/trlib-external/LICENSE +21 -0
- casadi/include/trlib/trlib_eigen_inverse.h +118 -0
- casadi/include/trlib/trlib_krylov.h +493 -0
- casadi/include/trlib/trlib_leftmost.h +181 -0
- casadi/include/trlib/trlib_private.h +109 -0
- casadi/include/trlib/trlib_quadratic_zero.h +57 -0
- casadi/include/trlib/trlib_tri_factor.h +409 -0
- casadi/include/trlib/trlib_types.h +36 -0
- casadi/lib/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.7 → 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/libFortranHighs.so +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/libalpaqa-dl-loader.so +0 -0
- casadi/libalpaqa-dl-loader.so.1.0.0 +0 -0
- casadi/libalpaqa.so +0 -0
- casadi/libalpaqa.so.1.0.0 +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_gurobi.so +0 -0
- casadi/libcasadi_conic_gurobi.so.3.7 +0 -0
- casadi/libcasadi_conic_highs.so +0 -0
- casadi/libcasadi_conic_highs.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_proxqp.so +0 -0
- casadi/libcasadi_conic_proxqp.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_alpaqa.so +0 -0
- casadi/libcasadi_nlpsol_alpaqa.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_sleqp.so +0 -0
- casadi/libcasadi_nlpsol_sleqp.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/libhighs.so +0 -0
- casadi/libhighs.so.1.6 +0 -0
- casadi/libhighs.so.1.6.0 +0 -0
- casadi/libindirect.a +0 -0
- casadi/liblinsys.a +0 -0
- casadi/libosqp.a +0 -0
- casadi/libqdldl.a +0 -0
- casadi/libsleqp.so +0 -0
- casadi/libsleqp.so.1.0.1 +0 -0
- casadi/libspral.a +0 -0
- casadi/libsuperscs.a +0 -0
- casadi/libtrlib.so +0 -0
- casadi/libtrlib.so.0.4 +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/highs.pc +3 -3
- 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/pkgconfig/sleqp.pc +10 -0
- {casadi-3.6.2.dist-info → casadi-3.6.4.dist-info}/METADATA +1 -1
- {casadi-3.6.2.dist-info → casadi-3.6.4.dist-info}/RECORD +324 -283
- 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/libCoinUtils.so.3.11.6 +0 -0
- casadi/libOsiClp.so.1.14.7 +0 -0
- casadi/libbonmin.so.4.8.8 +0 -0
- casadi/libhighs.so.1.4 +0 -0
- casadi/libhighs.so.1.4.0 +0 -0
- /casadi/{libOsi.so.1.13.7 → libOsi.so.1.13.9} +0 -0
- {casadi-3.6.2.dist-info → casadi-3.6.4.dist-info}/WHEEL +0 -0
@@ -1,6 +1,183 @@
|
|
1
1
|
|
2
2
|
// File: index.xml
|
3
3
|
|
4
|
+
// File: classcasadi_1_1AlpaqaProblem.xml
|
5
|
+
%feature("docstring") casadi::AlpaqaProblem "
|
6
|
+
|
7
|
+
[INTERNAL] C++ includes: alpaqa_problem.hpp
|
8
|
+
";
|
9
|
+
|
10
|
+
%feature("docstring") casadi::AlpaqaProblem::AlpaqaProblem "
|
11
|
+
|
12
|
+
[INTERNAL] ";
|
13
|
+
|
14
|
+
%feature("docstring") casadi::AlpaqaProblem::~AlpaqaProblem "
|
15
|
+
|
16
|
+
[INTERNAL] ";
|
17
|
+
|
18
|
+
%feature("docstring") casadi::AlpaqaProblem::eval_f "
|
19
|
+
|
20
|
+
[INTERNAL] ";
|
21
|
+
|
22
|
+
%feature("docstring") casadi::AlpaqaProblem::eval_grad_f "
|
23
|
+
|
24
|
+
[INTERNAL] ";
|
25
|
+
|
26
|
+
%feature("docstring") casadi::AlpaqaProblem::eval_f_grad_f "
|
27
|
+
|
28
|
+
[INTERNAL] ";
|
29
|
+
|
30
|
+
%feature("docstring") casadi::AlpaqaProblem::eval_g "
|
31
|
+
|
32
|
+
[INTERNAL] ";
|
33
|
+
|
34
|
+
%feature("docstring") casadi::AlpaqaProblem::eval_grad_g_prod "
|
35
|
+
|
36
|
+
[INTERNAL] ";
|
37
|
+
|
38
|
+
%feature("docstring") casadi::AlpaqaProblem::eval_grad_ps "
|
39
|
+
|
40
|
+
[INTERNAL] ";
|
41
|
+
|
42
|
+
%feature("docstring") casadi::AlpaqaProblem::eval_ps_grad_ps "
|
43
|
+
|
44
|
+
[INTERNAL] ";
|
45
|
+
|
46
|
+
%feature("docstring") casadi::AlpaqaProblem::eval_grad_L "
|
47
|
+
|
48
|
+
[INTERNAL] ";
|
49
|
+
|
50
|
+
%feature("docstring") casadi::AlpaqaProblem::eval_ps "
|
51
|
+
|
52
|
+
[INTERNAL] ";
|
53
|
+
|
54
|
+
%feature("docstring") casadi::AlpaqaProblem::eval_grad_gi "
|
55
|
+
|
56
|
+
[INTERNAL] ";
|
57
|
+
|
58
|
+
%feature("docstring") casadi::AlpaqaProblem::get_jac_g_num_nonzeros "
|
59
|
+
|
60
|
+
[INTERNAL] ";
|
61
|
+
|
62
|
+
%feature("docstring") casadi::AlpaqaProblem::eval_jac_g "
|
63
|
+
|
64
|
+
[INTERNAL] ";
|
65
|
+
|
66
|
+
%feature("docstring") casadi::AlpaqaProblem::eval_hess_L_prod "
|
67
|
+
|
68
|
+
[INTERNAL] ";
|
69
|
+
|
70
|
+
%feature("docstring") casadi::AlpaqaProblem::get_hess_L_num_nonzeros "
|
71
|
+
|
72
|
+
[INTERNAL] ";
|
73
|
+
|
74
|
+
%feature("docstring") casadi::AlpaqaProblem::eval_hess_L "
|
75
|
+
|
76
|
+
[INTERNAL] ";
|
77
|
+
|
78
|
+
%feature("docstring") casadi::AlpaqaProblem::eval_hess_ps_prod "
|
79
|
+
|
80
|
+
[INTERNAL] ";
|
81
|
+
|
82
|
+
%feature("docstring") casadi::AlpaqaProblem::get_hess_ps_num_nonzeros "
|
83
|
+
|
84
|
+
[INTERNAL] ";
|
85
|
+
|
86
|
+
%feature("docstring") casadi::AlpaqaProblem::eval_hess_ps "
|
87
|
+
|
88
|
+
[INTERNAL] ";
|
89
|
+
|
90
|
+
%feature("docstring") casadi::AlpaqaProblem::provides_eval_grad_gi "
|
91
|
+
|
92
|
+
[INTERNAL]
|
93
|
+
|
94
|
+
See:
|
95
|
+
TypeErasedProblem::provides_eval_grad_gi
|
96
|
+
|
97
|
+
Doc source:
|
98
|
+
https://github.com/casadi/casadi/blob/develop/casadi/interfaces/alpaqa/alpaqa_problem.hpp#L46
|
99
|
+
|
100
|
+
Implementation:
|
101
|
+
https://github.com/casadi/casadi/blob/develop/casadi/interfaces/alpaqa/alpaqa_problem.hpp#L46-L46
|
102
|
+
|
103
|
+
";
|
104
|
+
|
105
|
+
%feature("docstring") casadi::AlpaqaProblem::provides_eval_jac_g "
|
106
|
+
|
107
|
+
[INTERNAL]
|
108
|
+
|
109
|
+
See:
|
110
|
+
TypeErasedProblem::provides_eval_jac_g
|
111
|
+
|
112
|
+
Doc source:
|
113
|
+
https://github.com/casadi/casadi/blob/develop/casadi/interfaces/alpaqa/alpaqa_problem.hpp#L48
|
114
|
+
|
115
|
+
Implementation:
|
116
|
+
https://github.com/casadi/casadi/blob/develop/casadi/interfaces/alpaqa/alpaqa_problem.hpp#L48-L48
|
117
|
+
|
118
|
+
";
|
119
|
+
|
120
|
+
%feature("docstring") casadi::AlpaqaProblem::provides_eval_hess_L_prod "
|
121
|
+
|
122
|
+
[INTERNAL]
|
123
|
+
|
124
|
+
See:
|
125
|
+
TypeErasedProblem::provides_eval_hess_L_prod
|
126
|
+
|
127
|
+
Doc source:
|
128
|
+
https://github.com/casadi/casadi/blob/develop/casadi/interfaces/alpaqa/alpaqa_problem.hpp#L50
|
129
|
+
|
130
|
+
Implementation:
|
131
|
+
https://github.com/casadi/casadi/blob/develop/casadi/interfaces/alpaqa/alpaqa_problem.hpp#L50-L50
|
132
|
+
|
133
|
+
";
|
134
|
+
|
135
|
+
%feature("docstring") casadi::AlpaqaProblem::provides_eval_hess_L "
|
136
|
+
|
137
|
+
[INTERNAL]
|
138
|
+
|
139
|
+
See:
|
140
|
+
TypeErasedProblem::provides_eval_hess_L
|
141
|
+
|
142
|
+
Doc source:
|
143
|
+
https://github.com/casadi/casadi/blob/develop/casadi/interfaces/alpaqa/alpaqa_problem.hpp#L52
|
144
|
+
|
145
|
+
Implementation:
|
146
|
+
https://github.com/casadi/casadi/blob/develop/casadi/interfaces/alpaqa/alpaqa_problem.hpp#L52-L52
|
147
|
+
|
148
|
+
";
|
149
|
+
|
150
|
+
%feature("docstring") casadi::AlpaqaProblem::provides_eval_hess_ps_prod "
|
151
|
+
|
152
|
+
[INTERNAL]
|
153
|
+
|
154
|
+
See:
|
155
|
+
TypeErasedProblem::provides_eval_hess_ps_prod
|
156
|
+
|
157
|
+
Doc source:
|
158
|
+
https://github.com/casadi/casadi/blob/develop/casadi/interfaces/alpaqa/alpaqa_problem.hpp#L54
|
159
|
+
|
160
|
+
Implementation:
|
161
|
+
https://github.com/casadi/casadi/blob/develop/casadi/interfaces/alpaqa/alpaqa_problem.hpp#L54-L54
|
162
|
+
|
163
|
+
";
|
164
|
+
|
165
|
+
%feature("docstring") casadi::AlpaqaProblem::provides_eval_hess_ps "
|
166
|
+
|
167
|
+
[INTERNAL]
|
168
|
+
|
169
|
+
See:
|
170
|
+
TypeErasedProblem::provides_eval_hess_ps
|
171
|
+
|
172
|
+
Doc source:
|
173
|
+
https://github.com/casadi/casadi/blob/develop/casadi/interfaces/alpaqa/alpaqa_problem.hpp#L56
|
174
|
+
|
175
|
+
Implementation:
|
176
|
+
https://github.com/casadi/casadi/blob/develop/casadi/interfaces/alpaqa/alpaqa_problem.hpp#L56-L56
|
177
|
+
|
178
|
+
";
|
179
|
+
|
180
|
+
|
4
181
|
// File: classcasadi_1_1Blocksqp.xml
|
5
182
|
%feature("docstring") casadi::Blocksqp "
|
6
183
|
|
@@ -3292,6 +3469,12 @@ C++ includes: casadi_meta.hpp
|
|
3292
3469
|
";
|
3293
3470
|
|
3294
3471
|
|
3472
|
+
// File: classcasadi_1_1CasadiStructuredQP.xml
|
3473
|
+
%feature("docstring") casadi::CasadiStructuredQP "
|
3474
|
+
|
3475
|
+
[INTERNAL] ";
|
3476
|
+
|
3477
|
+
|
3295
3478
|
// File: classcasadi_1_1ClangCompiler.xml
|
3296
3479
|
%feature("docstring") casadi::ClangCompiler "
|
3297
3480
|
|
@@ -3327,7 +3510,7 @@ Doc source:
|
|
3327
3510
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L46
|
3328
3511
|
|
3329
3512
|
Implementation:
|
3330
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L35-
|
3513
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L35-L180
|
3331
3514
|
|
3332
3515
|
";
|
3333
3516
|
|
@@ -3340,7 +3523,7 @@ Doc source:
|
|
3340
3523
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L49
|
3341
3524
|
|
3342
3525
|
Implementation:
|
3343
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
3526
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L288-L316
|
3344
3527
|
|
3345
3528
|
";
|
3346
3529
|
|
@@ -3353,7 +3536,7 @@ Doc source:
|
|
3353
3536
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L57
|
3354
3537
|
|
3355
3538
|
Implementation:
|
3356
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
3539
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L318-L322
|
3357
3540
|
|
3358
3541
|
> std::string casadi::CodeGenerator::dump()
|
3359
3542
|
------------------------------------------------------------------------
|
@@ -3364,7 +3547,7 @@ Doc source:
|
|
3364
3547
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L57
|
3365
3548
|
|
3366
3549
|
Implementation:
|
3367
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
3550
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L318-L322
|
3368
3551
|
|
3369
3552
|
";
|
3370
3553
|
|
@@ -3385,7 +3568,7 @@ Doc source:
|
|
3385
3568
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L66
|
3386
3569
|
|
3387
3570
|
Implementation:
|
3388
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
3571
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L410-L464
|
3389
3572
|
|
3390
3573
|
";
|
3391
3574
|
|
@@ -3400,7 +3583,7 @@ Doc source:
|
|
3400
3583
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L69
|
3401
3584
|
|
3402
3585
|
Implementation:
|
3403
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
3586
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L942-L962
|
3404
3587
|
|
3405
3588
|
";
|
3406
3589
|
|
@@ -3413,7 +3596,7 @@ Doc source:
|
|
3413
3596
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L74
|
3414
3597
|
|
3415
3598
|
Implementation:
|
3416
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
3599
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L207-L286
|
3417
3600
|
|
3418
3601
|
";
|
3419
3602
|
|
@@ -3426,7 +3609,7 @@ Doc source:
|
|
3426
3609
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L77
|
3427
3610
|
|
3428
3611
|
Implementation:
|
3429
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
3612
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L986-L988
|
3430
3613
|
|
3431
3614
|
";
|
3432
3615
|
|
@@ -3439,7 +3622,7 @@ Doc source:
|
|
3439
3622
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L83
|
3440
3623
|
|
3441
3624
|
Implementation:
|
3442
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
3625
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L995-L1001
|
3443
3626
|
|
3444
3627
|
> std::string casadi::CodeGenerator::shorthand(const std::string &name, bool allow_adding=true)
|
3445
3628
|
------------------------------------------------------------------------
|
@@ -3450,7 +3633,7 @@ Doc source:
|
|
3450
3633
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L83
|
3451
3634
|
|
3452
3635
|
Implementation:
|
3453
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
3636
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L995-L1001
|
3454
3637
|
|
3455
3638
|
";
|
3456
3639
|
|
@@ -3475,7 +3658,7 @@ Doc source:
|
|
3475
3658
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L94
|
3476
3659
|
|
3477
3660
|
Implementation:
|
3478
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
3661
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1011-L1013
|
3479
3662
|
|
3480
3663
|
";
|
3481
3664
|
|
@@ -3490,7 +3673,7 @@ Doc source:
|
|
3490
3673
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L104
|
3491
3674
|
|
3492
3675
|
Implementation:
|
3493
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
3676
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1057-L1078
|
3494
3677
|
|
3495
3678
|
> casadi_int casadi::CodeGenerator::get_constant(const std::vector< casadi_int > &v, bool allow_adding=false)
|
3496
3679
|
------------------------------------------------------------------------
|
@@ -3503,7 +3686,7 @@ Doc source:
|
|
3503
3686
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L104
|
3504
3687
|
|
3505
3688
|
Implementation:
|
3506
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
3689
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1057-L1078
|
3507
3690
|
|
3508
3691
|
";
|
3509
3692
|
|
@@ -3533,7 +3716,7 @@ Doc source:
|
|
3533
3716
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L121
|
3534
3717
|
|
3535
3718
|
Implementation:
|
3536
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
3719
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1084-L1098
|
3537
3720
|
|
3538
3721
|
";
|
3539
3722
|
|
@@ -3548,7 +3731,7 @@ Doc source:
|
|
3548
3731
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L134
|
3549
3732
|
|
3550
3733
|
Implementation:
|
3551
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
3734
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L727-L732
|
3552
3735
|
|
3553
3736
|
";
|
3554
3737
|
|
@@ -3563,7 +3746,7 @@ Doc source:
|
|
3563
3746
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L139
|
3564
3747
|
|
3565
3748
|
Implementation:
|
3566
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
3749
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L734-L739
|
3567
3750
|
|
3568
3751
|
";
|
3569
3752
|
|
@@ -3578,7 +3761,7 @@ Doc source:
|
|
3578
3761
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L144
|
3579
3762
|
|
3580
3763
|
Implementation:
|
3581
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
3764
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L741-L746
|
3582
3765
|
|
3583
3766
|
";
|
3584
3767
|
|
@@ -3593,7 +3776,7 @@ Doc source:
|
|
3593
3776
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L149
|
3594
3777
|
|
3595
3778
|
Implementation:
|
3596
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
3779
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L748-L753
|
3597
3780
|
|
3598
3781
|
";
|
3599
3782
|
|
@@ -3608,7 +3791,7 @@ Doc source:
|
|
3608
3791
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L166
|
3609
3792
|
|
3610
3793
|
Implementation:
|
3611
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
3794
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1943-L1967
|
3612
3795
|
|
3613
3796
|
";
|
3614
3797
|
|
@@ -3623,7 +3806,7 @@ Doc source:
|
|
3623
3806
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L181
|
3624
3807
|
|
3625
3808
|
Implementation:
|
3626
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
3809
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1990-L1993
|
3627
3810
|
|
3628
3811
|
";
|
3629
3812
|
|
@@ -3638,7 +3821,7 @@ Doc source:
|
|
3638
3821
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L186
|
3639
3822
|
|
3640
3823
|
Implementation:
|
3641
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
3824
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1995-L2007
|
3642
3825
|
|
3643
3826
|
";
|
3644
3827
|
|
@@ -3653,7 +3836,7 @@ Doc source:
|
|
3653
3836
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L191
|
3654
3837
|
|
3655
3838
|
Implementation:
|
3656
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
3839
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L182-L185
|
3657
3840
|
|
3658
3841
|
";
|
3659
3842
|
|
@@ -3668,7 +3851,7 @@ Doc source:
|
|
3668
3851
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L196
|
3669
3852
|
|
3670
3853
|
Implementation:
|
3671
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
3854
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L187-L205
|
3672
3855
|
|
3673
3856
|
";
|
3674
3857
|
|
@@ -3683,7 +3866,7 @@ Doc source:
|
|
3683
3866
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L201
|
3684
3867
|
|
3685
3868
|
Implementation:
|
3686
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
3869
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2009-L2020
|
3687
3870
|
|
3688
3871
|
";
|
3689
3872
|
|
@@ -3698,7 +3881,7 @@ Doc source:
|
|
3698
3881
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L206
|
3699
3882
|
|
3700
3883
|
Implementation:
|
3701
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
3884
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2022-L2025
|
3702
3885
|
|
3703
3886
|
";
|
3704
3887
|
|
@@ -3769,7 +3952,7 @@ Doc source:
|
|
3769
3952
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L239
|
3770
3953
|
|
3771
3954
|
Implementation:
|
3772
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
3955
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2028-L2119
|
3773
3956
|
|
3774
3957
|
";
|
3775
3958
|
|
@@ -3784,7 +3967,7 @@ Doc source:
|
|
3784
3967
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L246
|
3785
3968
|
|
3786
3969
|
Implementation:
|
3787
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
3970
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1705-L1711
|
3788
3971
|
|
3789
3972
|
";
|
3790
3973
|
|
@@ -3799,7 +3982,7 @@ Doc source:
|
|
3799
3982
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L257
|
3800
3983
|
|
3801
3984
|
Implementation:
|
3802
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
3985
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1905-L1910
|
3803
3986
|
|
3804
3987
|
> std::string casadi::CodeGenerator::mv(const std::string &x, casadi_int nrow_x, casadi_int ncol_x, const std::string &y, const std::string &z, bool tr)
|
3805
3988
|
------------------------------------------------------------------------
|
@@ -3812,7 +3995,7 @@ Doc source:
|
|
3812
3995
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L257
|
3813
3996
|
|
3814
3997
|
Implementation:
|
3815
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
3998
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1905-L1910
|
3816
3999
|
|
3817
4000
|
";
|
3818
4001
|
|
@@ -3829,7 +4012,7 @@ Doc source:
|
|
3829
4012
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L263
|
3830
4013
|
|
3831
4014
|
Implementation:
|
3832
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
4015
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1857-L1861
|
3833
4016
|
|
3834
4017
|
";
|
3835
4018
|
|
@@ -3844,7 +4027,7 @@ Doc source:
|
|
3844
4027
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L271
|
3845
4028
|
|
3846
4029
|
Implementation:
|
3847
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
4030
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1863-L1867
|
3848
4031
|
|
3849
4032
|
";
|
3850
4033
|
|
@@ -3859,7 +4042,7 @@ Doc source:
|
|
3859
4042
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L279
|
3860
4043
|
|
3861
4044
|
Implementation:
|
3862
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
4045
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1869-L1873
|
3863
4046
|
|
3864
4047
|
";
|
3865
4048
|
|
@@ -3874,7 +4057,7 @@ Doc source:
|
|
3874
4057
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L286
|
3875
4058
|
|
3876
4059
|
Implementation:
|
3877
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
4060
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1875-L1879
|
3878
4061
|
|
3879
4062
|
";
|
3880
4063
|
|
@@ -3889,7 +4072,7 @@ Doc source:
|
|
3889
4072
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L293
|
3890
4073
|
|
3891
4074
|
Implementation:
|
3892
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
4075
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1881-L1885
|
3893
4076
|
|
3894
4077
|
";
|
3895
4078
|
|
@@ -3904,7 +4087,7 @@ Doc source:
|
|
3904
4087
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L300
|
3905
4088
|
|
3906
4089
|
Implementation:
|
3907
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
4090
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1887-L1891
|
3908
4091
|
|
3909
4092
|
";
|
3910
4093
|
|
@@ -3919,7 +4102,7 @@ Doc source:
|
|
3919
4102
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L307
|
3920
4103
|
|
3921
4104
|
Implementation:
|
3922
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
4105
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1893-L1896
|
3923
4106
|
|
3924
4107
|
";
|
3925
4108
|
|
@@ -3934,7 +4117,7 @@ Doc source:
|
|
3934
4117
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L312
|
3935
4118
|
|
3936
4119
|
Implementation:
|
3937
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
4120
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1912-L1919
|
3938
4121
|
|
3939
4122
|
";
|
3940
4123
|
|
@@ -3949,7 +4132,7 @@ Doc source:
|
|
3949
4132
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L320
|
3950
4133
|
|
3951
4134
|
Implementation:
|
3952
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
4135
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1921-L1926
|
3953
4136
|
|
3954
4137
|
";
|
3955
4138
|
|
@@ -3964,7 +4147,7 @@ Doc source:
|
|
3964
4147
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L326
|
3965
4148
|
|
3966
4149
|
Implementation:
|
3967
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
4150
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1928-L1933
|
3968
4151
|
|
3969
4152
|
";
|
3970
4153
|
|
@@ -3979,7 +4162,7 @@ Doc source:
|
|
3979
4162
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L332
|
3980
4163
|
|
3981
4164
|
Implementation:
|
3982
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
4165
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1713-L1719
|
3983
4166
|
|
3984
4167
|
";
|
3985
4168
|
|
@@ -3994,7 +4177,7 @@ Doc source:
|
|
3994
4177
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L338
|
3995
4178
|
|
3996
4179
|
Implementation:
|
3997
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
4180
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1721-L1729
|
3998
4181
|
|
3999
4182
|
";
|
4000
4183
|
|
@@ -4007,7 +4190,7 @@ Doc source:
|
|
4007
4190
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L342
|
4008
4191
|
|
4009
4192
|
Implementation:
|
4010
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
4193
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1936-L1941
|
4011
4194
|
|
4012
4195
|
";
|
4013
4196
|
|
@@ -4022,7 +4205,7 @@ Doc source:
|
|
4022
4205
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L347
|
4023
4206
|
|
4024
4207
|
Implementation:
|
4025
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
4208
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1731-L1742
|
4026
4209
|
|
4027
4210
|
";
|
4028
4211
|
|
@@ -4037,7 +4220,7 @@ Doc source:
|
|
4037
4220
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L356
|
4038
4221
|
|
4039
4222
|
Implementation:
|
4040
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
4223
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1744-L1754
|
4041
4224
|
|
4042
4225
|
";
|
4043
4226
|
|
@@ -4052,7 +4235,7 @@ Doc source:
|
|
4052
4235
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L366
|
4053
4236
|
|
4054
4237
|
Implementation:
|
4055
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
4238
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1756-L1762
|
4056
4239
|
|
4057
4240
|
";
|
4058
4241
|
|
@@ -4067,7 +4250,7 @@ Doc source:
|
|
4067
4250
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L372
|
4068
4251
|
|
4069
4252
|
Implementation:
|
4070
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
4253
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2154-L2162
|
4071
4254
|
|
4072
4255
|
";
|
4073
4256
|
|
@@ -4082,7 +4265,7 @@ Doc source:
|
|
4082
4265
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L381
|
4083
4266
|
|
4084
4267
|
Implementation:
|
4085
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
4268
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2165-L2174
|
4086
4269
|
|
4087
4270
|
";
|
4088
4271
|
|
@@ -4097,7 +4280,7 @@ Doc source:
|
|
4097
4280
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L390
|
4098
4281
|
|
4099
4282
|
Implementation:
|
4100
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
4283
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2177-L2182
|
4101
4284
|
|
4102
4285
|
";
|
4103
4286
|
|
@@ -4112,7 +4295,7 @@ Doc source:
|
|
4112
4295
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L396
|
4113
4296
|
|
4114
4297
|
Implementation:
|
4115
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
4298
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2185-L2191
|
4116
4299
|
|
4117
4300
|
";
|
4118
4301
|
|
@@ -4127,7 +4310,7 @@ Doc source:
|
|
4127
4310
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L404
|
4128
4311
|
|
4129
4312
|
Implementation:
|
4130
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
4313
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2194-L2200
|
4131
4314
|
|
4132
4315
|
";
|
4133
4316
|
|
@@ -4142,7 +4325,7 @@ Doc source:
|
|
4142
4325
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L412
|
4143
4326
|
|
4144
4327
|
Implementation:
|
4145
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
4328
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2203-L2206
|
4146
4329
|
|
4147
4330
|
";
|
4148
4331
|
|
@@ -4157,7 +4340,7 @@ Doc source:
|
|
4157
4340
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L417
|
4158
4341
|
|
4159
4342
|
Implementation:
|
4160
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
4343
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2209-L2212
|
4161
4344
|
|
4162
4345
|
";
|
4163
4346
|
|
@@ -4172,7 +4355,7 @@ Doc source:
|
|
4172
4355
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L422
|
4173
4356
|
|
4174
4357
|
Implementation:
|
4175
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
4358
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2251-L2254
|
4176
4359
|
|
4177
4360
|
";
|
4178
4361
|
|
@@ -4187,7 +4370,7 @@ Doc source:
|
|
4187
4370
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L427
|
4188
4371
|
|
4189
4372
|
Implementation:
|
4190
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
4373
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2257-L2260
|
4191
4374
|
|
4192
4375
|
";
|
4193
4376
|
|
@@ -4202,7 +4385,7 @@ Doc source:
|
|
4202
4385
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L442
|
4203
4386
|
|
4204
4387
|
Implementation:
|
4205
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
4388
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2227-L2230
|
4206
4389
|
|
4207
4390
|
> std::string casadi::CodeGenerator::vfmax(const std::string &x, const std::string &n, const std::string &y)
|
4208
4391
|
------------------------------------------------------------------------
|
@@ -4215,7 +4398,7 @@ Doc source:
|
|
4215
4398
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L442
|
4216
4399
|
|
4217
4400
|
Implementation:
|
4218
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
4401
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2227-L2230
|
4219
4402
|
|
4220
4403
|
";
|
4221
4404
|
|
@@ -4232,7 +4415,7 @@ Doc source:
|
|
4232
4415
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L447
|
4233
4416
|
|
4234
4417
|
Implementation:
|
4235
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
4418
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2233-L2236
|
4236
4419
|
|
4237
4420
|
> std::string casadi::CodeGenerator::vfmin(const std::string &x, const std::string &n, const std::string &y)
|
4238
4421
|
------------------------------------------------------------------------
|
@@ -4245,7 +4428,7 @@ Doc source:
|
|
4245
4428
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L447
|
4246
4429
|
|
4247
4430
|
Implementation:
|
4248
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
4431
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2233-L2236
|
4249
4432
|
|
4250
4433
|
";
|
4251
4434
|
|
@@ -4262,7 +4445,7 @@ Doc source:
|
|
4262
4445
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L452
|
4263
4446
|
|
4264
4447
|
Implementation:
|
4265
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
4448
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2239-L2242
|
4266
4449
|
|
4267
4450
|
";
|
4268
4451
|
|
@@ -4277,7 +4460,7 @@ Doc source:
|
|
4277
4460
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L457
|
4278
4461
|
|
4279
4462
|
Implementation:
|
4280
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
4463
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2245-L2248
|
4281
4464
|
|
4282
4465
|
";
|
4283
4466
|
|
@@ -4292,7 +4475,7 @@ Doc source:
|
|
4292
4475
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L462
|
4293
4476
|
|
4294
4477
|
Implementation:
|
4295
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
4478
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2275-L2278
|
4296
4479
|
|
4297
4480
|
";
|
4298
4481
|
|
@@ -4314,7 +4497,7 @@ Doc source:
|
|
4314
4497
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L469
|
4315
4498
|
|
4316
4499
|
Implementation:
|
4317
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
4500
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2281-L2284
|
4318
4501
|
|
4319
4502
|
";
|
4320
4503
|
|
@@ -4329,7 +4512,7 @@ Doc source:
|
|
4329
4512
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L474
|
4330
4513
|
|
4331
4514
|
Implementation:
|
4332
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
4515
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2263-L2266
|
4333
4516
|
|
4334
4517
|
";
|
4335
4518
|
|
@@ -4344,7 +4527,7 @@ Doc source:
|
|
4344
4527
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L480
|
4345
4528
|
|
4346
4529
|
Implementation:
|
4347
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
4530
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2269-L2272
|
4348
4531
|
|
4349
4532
|
";
|
4350
4533
|
|
@@ -4359,7 +4542,7 @@ Doc source:
|
|
4359
4542
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L486
|
4360
4543
|
|
4361
4544
|
Implementation:
|
4362
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
4545
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2312-L2317
|
4363
4546
|
|
4364
4547
|
";
|
4365
4548
|
|
@@ -4374,7 +4557,7 @@ Doc source:
|
|
4374
4557
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L492
|
4375
4558
|
|
4376
4559
|
Implementation:
|
4377
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
4560
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2287-L2290
|
4378
4561
|
|
4379
4562
|
";
|
4380
4563
|
|
@@ -4389,7 +4572,7 @@ Doc source:
|
|
4389
4572
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L497
|
4390
4573
|
|
4391
4574
|
Implementation:
|
4392
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
4575
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2293-L2296
|
4393
4576
|
|
4394
4577
|
";
|
4395
4578
|
|
@@ -4404,7 +4587,7 @@ Doc source:
|
|
4404
4587
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L502
|
4405
4588
|
|
4406
4589
|
Implementation:
|
4407
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
4590
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2299-L2303
|
4408
4591
|
|
4409
4592
|
";
|
4410
4593
|
|
@@ -4419,7 +4602,7 @@ Doc source:
|
|
4419
4602
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L508
|
4420
4603
|
|
4421
4604
|
Implementation:
|
4422
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
4605
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2306-L2309
|
4423
4606
|
|
4424
4607
|
";
|
4425
4608
|
|
@@ -4434,7 +4617,7 @@ Doc source:
|
|
4434
4617
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L514
|
4435
4618
|
|
4436
4619
|
Implementation:
|
4437
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
4620
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1764-L1775
|
4438
4621
|
|
4439
4622
|
";
|
4440
4623
|
|
@@ -4449,7 +4632,7 @@ Doc source:
|
|
4449
4632
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L519
|
4450
4633
|
|
4451
4634
|
Implementation:
|
4452
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
4635
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2121-L2125
|
4453
4636
|
|
4454
4637
|
";
|
4455
4638
|
|
@@ -4464,7 +4647,7 @@ Doc source:
|
|
4464
4647
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L612
|
4465
4648
|
|
4466
4649
|
Implementation:
|
4467
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
4650
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1104-L1550
|
4468
4651
|
|
4469
4652
|
";
|
4470
4653
|
|
@@ -4479,7 +4662,7 @@ Doc source:
|
|
4479
4662
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L617
|
4480
4663
|
|
4481
4664
|
Implementation:
|
4482
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
4665
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2128-L2151
|
4483
4666
|
|
4484
4667
|
";
|
4485
4668
|
|
@@ -4492,7 +4675,7 @@ Doc source:
|
|
4492
4675
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L622
|
4493
4676
|
|
4494
4677
|
Implementation:
|
4495
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
4678
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L863-L871
|
4496
4679
|
|
4497
4680
|
";
|
4498
4681
|
|
@@ -4505,7 +4688,7 @@ Doc source:
|
|
4505
4688
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L625
|
4506
4689
|
|
4507
4690
|
Implementation:
|
4508
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
4691
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L873-L879
|
4509
4692
|
|
4510
4693
|
";
|
4511
4694
|
|
@@ -4520,7 +4703,7 @@ Doc source:
|
|
4520
4703
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L640
|
4521
4704
|
|
4522
4705
|
Implementation:
|
4523
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
4706
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L900-L903
|
4524
4707
|
|
4525
4708
|
> void casadi::CodeGenerator::print_vector(std::ostream &s, const std::string &name, const std::vector< double > &v)
|
4526
4709
|
------------------------------------------------------------------------
|
@@ -4533,7 +4716,7 @@ Doc source:
|
|
4533
4716
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L640
|
4534
4717
|
|
4535
4718
|
Implementation:
|
4536
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
4719
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L900-L903
|
4537
4720
|
|
4538
4721
|
";
|
4539
4722
|
|
@@ -4550,7 +4733,7 @@ Doc source:
|
|
4550
4733
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L646
|
4551
4734
|
|
4552
4735
|
Implementation:
|
4553
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
4736
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1644-L1651
|
4554
4737
|
|
4555
4738
|
";
|
4556
4739
|
|
@@ -4573,7 +4756,7 @@ Doc source:
|
|
4573
4756
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L655
|
4574
4757
|
|
4575
4758
|
Implementation:
|
4576
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
4759
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1695-L1703
|
4577
4760
|
|
4578
4761
|
";
|
4579
4762
|
|
@@ -4588,7 +4771,7 @@ Doc source:
|
|
4588
4771
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L660
|
4589
4772
|
|
4590
4773
|
Implementation:
|
4591
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
4774
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1673-L1679
|
4592
4775
|
|
4593
4776
|
";
|
4594
4777
|
|
@@ -4603,7 +4786,7 @@ Doc source:
|
|
4603
4786
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L665
|
4604
4787
|
|
4605
4788
|
Implementation:
|
4606
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
4789
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1681-L1683
|
4607
4790
|
|
4608
4791
|
";
|
4609
4792
|
|
@@ -4618,7 +4801,7 @@ Doc source:
|
|
4618
4801
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L670
|
4619
4802
|
|
4620
4803
|
Implementation:
|
4621
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
4804
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1685-L1687
|
4622
4805
|
|
4623
4806
|
";
|
4624
4807
|
|
@@ -4633,7 +4816,7 @@ Doc source:
|
|
4633
4816
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L675
|
4634
4817
|
|
4635
4818
|
Implementation:
|
4636
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
4819
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1689-L1693
|
4637
4820
|
|
4638
4821
|
";
|
4639
4822
|
|
@@ -4648,7 +4831,7 @@ Doc source:
|
|
4648
4831
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L680
|
4649
4832
|
|
4650
4833
|
Implementation:
|
4651
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
4834
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1778-L1790
|
4652
4835
|
|
4653
4836
|
";
|
4654
4837
|
|
@@ -4663,7 +4846,7 @@ Doc source:
|
|
4663
4846
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L687
|
4664
4847
|
|
4665
4848
|
Implementation:
|
4666
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
4849
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1793-L1801
|
4667
4850
|
|
4668
4851
|
";
|
4669
4852
|
|
@@ -4678,7 +4861,7 @@ Doc source:
|
|
4678
4861
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L693
|
4679
4862
|
|
4680
4863
|
Implementation:
|
4681
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
4864
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1804-L1812
|
4682
4865
|
|
4683
4866
|
";
|
4684
4867
|
|
@@ -4693,7 +4876,7 @@ Doc source:
|
|
4693
4876
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L699
|
4694
4877
|
|
4695
4878
|
Implementation:
|
4696
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
4879
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1815-L1823
|
4697
4880
|
|
4698
4881
|
";
|
4699
4882
|
|
@@ -4708,7 +4891,7 @@ Doc source:
|
|
4708
4891
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L705
|
4709
4892
|
|
4710
4893
|
Implementation:
|
4711
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
4894
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1552-L1557
|
4712
4895
|
|
4713
4896
|
";
|
4714
4897
|
|
@@ -4723,7 +4906,7 @@ Doc source:
|
|
4723
4906
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L710
|
4724
4907
|
|
4725
4908
|
Implementation:
|
4726
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
4909
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1559-L1570
|
4727
4910
|
|
4728
4911
|
";
|
4729
4912
|
|
@@ -4764,7 +4947,7 @@ Doc source:
|
|
4764
4947
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L738
|
4765
4948
|
|
4766
4949
|
Implementation:
|
4767
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
4950
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2320-L2323
|
4768
4951
|
|
4769
4952
|
";
|
4770
4953
|
|
@@ -4779,7 +4962,7 @@ Doc source:
|
|
4779
4962
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L743
|
4780
4963
|
|
4781
4964
|
Implementation:
|
4782
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
4965
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2326-L2331
|
4783
4966
|
|
4784
4967
|
";
|
4785
4968
|
|
@@ -4794,7 +4977,7 @@ Doc source:
|
|
4794
4977
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L759
|
4795
4978
|
|
4796
4979
|
Implementation:
|
4797
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
4980
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2333-L2341
|
4798
4981
|
|
4799
4982
|
";
|
4800
4983
|
|
@@ -7260,6 +7443,8 @@ C++ includes: serializing_stream.hpp
|
|
7260
7443
|
|
7261
7444
|
> void casadi::DeserializingStream::unpack(Importer &e)
|
7262
7445
|
|
7446
|
+
> void casadi::DeserializingStream::unpack(Fmu &e)
|
7447
|
+
|
7263
7448
|
> void casadi::DeserializingStream::unpack(GenericType &e)
|
7264
7449
|
|
7265
7450
|
> void casadi::DeserializingStream::unpack(std::ostream &s)
|
@@ -19280,7 +19465,7 @@ Doc source:
|
|
19280
19465
|
https://github.com/casadi/casadi/blob/develop/casadi/core/generic_matrix.hpp#L233
|
19281
19466
|
|
19282
19467
|
Implementation:
|
19283
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/generic_matrix.hpp#
|
19468
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/generic_matrix.hpp#L1567-L1592
|
19284
19469
|
|
19285
19470
|
";
|
19286
19471
|
|
@@ -19293,7 +19478,7 @@ Doc source:
|
|
19293
19478
|
https://github.com/casadi/casadi/blob/develop/casadi/core/generic_matrix.hpp#L235
|
19294
19479
|
|
19295
19480
|
Implementation:
|
19296
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/generic_matrix.hpp#
|
19481
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/generic_matrix.hpp#L1536-L1538
|
19297
19482
|
|
19298
19483
|
";
|
19299
19484
|
|
@@ -19306,7 +19491,7 @@ Doc source:
|
|
19306
19491
|
https://github.com/casadi/casadi/blob/develop/casadi/core/generic_matrix.hpp#L236
|
19307
19492
|
|
19308
19493
|
Implementation:
|
19309
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/generic_matrix.hpp#
|
19494
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/generic_matrix.hpp#L1541-L1543
|
19310
19495
|
|
19311
19496
|
";
|
19312
19497
|
|
@@ -19319,7 +19504,7 @@ Doc source:
|
|
19319
19504
|
https://github.com/casadi/casadi/blob/develop/casadi/core/generic_matrix.hpp#L237
|
19320
19505
|
|
19321
19506
|
Implementation:
|
19322
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/generic_matrix.hpp#
|
19507
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/generic_matrix.hpp#L1546-L1554
|
19323
19508
|
|
19324
19509
|
";
|
19325
19510
|
|
@@ -19332,7 +19517,7 @@ Doc source:
|
|
19332
19517
|
https://github.com/casadi/casadi/blob/develop/casadi/core/generic_matrix.hpp#L239
|
19333
19518
|
|
19334
19519
|
Implementation:
|
19335
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/generic_matrix.hpp#
|
19520
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/generic_matrix.hpp#L1557-L1564
|
19336
19521
|
|
19337
19522
|
";
|
19338
19523
|
|
@@ -22099,7 +22284,7 @@ Doc source:
|
|
22099
22284
|
https://github.com/casadi/casadi/blob/develop/casadi/core/generic_matrix.hpp#L233
|
22100
22285
|
|
22101
22286
|
Implementation:
|
22102
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/generic_matrix.hpp#
|
22287
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/generic_matrix.hpp#L1567-L1592
|
22103
22288
|
|
22104
22289
|
";
|
22105
22290
|
|
@@ -22112,7 +22297,7 @@ Doc source:
|
|
22112
22297
|
https://github.com/casadi/casadi/blob/develop/casadi/core/generic_matrix.hpp#L235
|
22113
22298
|
|
22114
22299
|
Implementation:
|
22115
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/generic_matrix.hpp#
|
22300
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/generic_matrix.hpp#L1536-L1538
|
22116
22301
|
|
22117
22302
|
";
|
22118
22303
|
|
@@ -22125,7 +22310,7 @@ Doc source:
|
|
22125
22310
|
https://github.com/casadi/casadi/blob/develop/casadi/core/generic_matrix.hpp#L236
|
22126
22311
|
|
22127
22312
|
Implementation:
|
22128
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/generic_matrix.hpp#
|
22313
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/generic_matrix.hpp#L1541-L1543
|
22129
22314
|
|
22130
22315
|
";
|
22131
22316
|
|
@@ -22138,7 +22323,7 @@ Doc source:
|
|
22138
22323
|
https://github.com/casadi/casadi/blob/develop/casadi/core/generic_matrix.hpp#L237
|
22139
22324
|
|
22140
22325
|
Implementation:
|
22141
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/generic_matrix.hpp#
|
22326
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/generic_matrix.hpp#L1546-L1554
|
22142
22327
|
|
22143
22328
|
";
|
22144
22329
|
|
@@ -22151,7 +22336,7 @@ Doc source:
|
|
22151
22336
|
https://github.com/casadi/casadi/blob/develop/casadi/core/generic_matrix.hpp#L239
|
22152
22337
|
|
22153
22338
|
Implementation:
|
22154
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/generic_matrix.hpp#
|
22339
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/generic_matrix.hpp#L1557-L1564
|
22155
22340
|
|
22156
22341
|
";
|
22157
22342
|
|
@@ -26349,6 +26534,8 @@ C++ includes: serializing_stream.hpp
|
|
26349
26534
|
|
26350
26535
|
> void casadi::SerializingStream::pack(const Importer &e)
|
26351
26536
|
|
26537
|
+
> void casadi::SerializingStream::pack(const Fmu &e)
|
26538
|
+
|
26352
26539
|
> void casadi::SerializingStream::pack(const Slice &e)
|
26353
26540
|
|
26354
26541
|
> void casadi::SerializingStream::pack(const GenericType &e)
|
@@ -26821,10 +27008,10 @@ Concatenate horizontally, six matrices.
|
|
26821
27008
|
Extra doc: https://github.com/casadi/casadi/wiki/L_4e
|
26822
27009
|
|
26823
27010
|
Doc source:
|
26824
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#
|
27011
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L502
|
26825
27012
|
|
26826
27013
|
Implementation:
|
26827
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#
|
27014
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L502-L505
|
26828
27015
|
|
26829
27016
|
> MatType casadi::SparsityInterface::horzcat(const MatType &x, const MatType &y, const MatType &z, const MatType &w, const MatType &v, const MatType &u)
|
26830
27017
|
------------------------------------------------------------------------
|
@@ -26834,10 +27021,10 @@ Concatenate horizontally, six matrices.
|
|
26834
27021
|
Extra doc: https://github.com/casadi/casadi/wiki/L_4e
|
26835
27022
|
|
26836
27023
|
Doc source:
|
26837
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#
|
27024
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L502
|
26838
27025
|
|
26839
27026
|
Implementation:
|
26840
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#
|
27027
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L502-L505
|
26841
27028
|
|
26842
27029
|
";
|
26843
27030
|
|
@@ -26851,10 +27038,10 @@ Concatenate vertically, six matrices.
|
|
26851
27038
|
Extra doc: https://github.com/casadi/casadi/wiki/L_4j
|
26852
27039
|
|
26853
27040
|
Doc source:
|
26854
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#
|
27041
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L540
|
26855
27042
|
|
26856
27043
|
Implementation:
|
26857
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#
|
27044
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L540-L543
|
26858
27045
|
|
26859
27046
|
> MatType casadi::SparsityInterface::vertcat(const MatType &x, const MatType &y, const MatType &z, const MatType &w, const MatType &v, const MatType &u)
|
26860
27047
|
------------------------------------------------------------------------
|
@@ -26864,10 +27051,10 @@ Concatenate vertically, six matrices.
|
|
26864
27051
|
Extra doc: https://github.com/casadi/casadi/wiki/L_4j
|
26865
27052
|
|
26866
27053
|
Doc source:
|
26867
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#
|
27054
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L540
|
26868
27055
|
|
26869
27056
|
Implementation:
|
26870
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#
|
27057
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L540-L543
|
26871
27058
|
|
26872
27059
|
";
|
26873
27060
|
|
@@ -26882,17 +27069,19 @@ Parameters:
|
|
26882
27069
|
-----------
|
26883
27070
|
|
26884
27071
|
incr:
|
26885
|
-
Size of each group of columns
|
27072
|
+
Size (width) of each group of columns
|
26886
27073
|
|
26887
27074
|
horzcat(horzsplit(x, ...)) = x
|
26888
27075
|
|
27076
|
+
\\\\seealso horzsplit_n
|
27077
|
+
|
26889
27078
|
Extra doc: https://github.com/casadi/casadi/wiki/L_3h
|
26890
27079
|
|
26891
27080
|
Doc source:
|
26892
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#
|
27081
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L134
|
26893
27082
|
|
26894
27083
|
Implementation:
|
26895
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#
|
27084
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L134-L136
|
26896
27085
|
|
26897
27086
|
> std::vector<MatType > casadi::SparsityInterface::horzsplit(const MatType &x, casadi_int incr=1)
|
26898
27087
|
------------------------------------------------------------------------
|
@@ -26903,22 +27092,51 @@ Parameters:
|
|
26903
27092
|
-----------
|
26904
27093
|
|
26905
27094
|
incr:
|
26906
|
-
Size of each group of columns
|
27095
|
+
Size (width) of each group of columns
|
26907
27096
|
|
26908
27097
|
horzcat(horzsplit(x, ...)) = x
|
26909
27098
|
|
27099
|
+
\\\\seealso horzsplit_n
|
27100
|
+
|
26910
27101
|
Extra doc: https://github.com/casadi/casadi/wiki/L_3h
|
26911
27102
|
|
26912
27103
|
Doc source:
|
26913
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#
|
27104
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L134
|
26914
27105
|
|
26915
27106
|
Implementation:
|
26916
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#
|
27107
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L134-L136
|
26917
27108
|
|
26918
27109
|
";
|
26919
27110
|
|
26920
27111
|
";
|
26921
27112
|
|
27113
|
+
%feature("docstring") casadi::SparsityInterfaceCommon::horzsplit_n "
|
27114
|
+
|
27115
|
+
[INTERNAL]
|
27116
|
+
split horizontally, retaining fixed-sized groups of columns
|
27117
|
+
|
27118
|
+
Parameters:
|
27119
|
+
-----------
|
27120
|
+
|
27121
|
+
n:
|
27122
|
+
Number of groups of columns
|
27123
|
+
|
27124
|
+
Will error when the number of columns is not a multiple of n
|
27125
|
+
|
27126
|
+
horzcat(horzsplit(x, ...)) = x
|
27127
|
+
|
27128
|
+
\\\\seealso horzsplit
|
27129
|
+
|
27130
|
+
Extra doc: https://github.com/casadi/casadi/wiki/L_277
|
27131
|
+
|
27132
|
+
Doc source:
|
27133
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L149
|
27134
|
+
|
27135
|
+
Implementation:
|
27136
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L149-L151
|
27137
|
+
|
27138
|
+
";
|
27139
|
+
|
26922
27140
|
%feature("docstring") casadi::SparsityInterfaceCommon::vertsplit "
|
26923
27141
|
|
26924
27142
|
[INTERNAL]
|
@@ -26965,13 +27183,15 @@ will have a size smaller than incr.
|
|
26965
27183
|
|
26966
27184
|
|
26967
27185
|
|
27186
|
+
\\\\seealso vertsplit_n
|
27187
|
+
|
26968
27188
|
Extra doc: https://github.com/casadi/casadi/wiki/L_3k
|
26969
27189
|
|
26970
27190
|
Doc source:
|
26971
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#
|
27191
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L204
|
26972
27192
|
|
26973
27193
|
Implementation:
|
26974
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#
|
27194
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L204-L206
|
26975
27195
|
|
26976
27196
|
> std::vector<MatType > casadi::SparsityInterface::vertsplit(const MatType &x, casadi_int incr=1)
|
26977
27197
|
------------------------------------------------------------------------
|
@@ -27019,13 +27239,15 @@ will have a size smaller than incr.
|
|
27019
27239
|
|
27020
27240
|
|
27021
27241
|
|
27242
|
+
\\\\seealso vertsplit_n
|
27243
|
+
|
27022
27244
|
Extra doc: https://github.com/casadi/casadi/wiki/L_3k
|
27023
27245
|
|
27024
27246
|
Doc source:
|
27025
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#
|
27247
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L204
|
27026
27248
|
|
27027
27249
|
Implementation:
|
27028
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#
|
27250
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L204-L206
|
27029
27251
|
|
27030
27252
|
";
|
27031
27253
|
|
@@ -27040,10 +27262,37 @@ matrices.
|
|
27040
27262
|
Extra doc: https://github.com/casadi/casadi/wiki/L_3j
|
27041
27263
|
|
27042
27264
|
Doc source:
|
27043
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#
|
27265
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L169
|
27266
|
+
|
27267
|
+
Implementation:
|
27268
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L169-L171
|
27269
|
+
|
27270
|
+
";
|
27271
|
+
|
27272
|
+
%feature("docstring") casadi::SparsityInterfaceCommon::vertsplit_n "
|
27273
|
+
|
27274
|
+
[INTERNAL]
|
27275
|
+
split vertically, retaining fixed-sized groups of rows
|
27276
|
+
|
27277
|
+
Parameters:
|
27278
|
+
-----------
|
27279
|
+
|
27280
|
+
n:
|
27281
|
+
Number of groups of rows
|
27282
|
+
|
27283
|
+
Will error when the number of rows is not a multiple of n
|
27284
|
+
|
27285
|
+
vertcat(vertsplit(x, ...)) = x
|
27286
|
+
|
27287
|
+
\\\\seealso vertsplit
|
27288
|
+
|
27289
|
+
Extra doc: https://github.com/casadi/casadi/wiki/L_278
|
27290
|
+
|
27291
|
+
Doc source:
|
27292
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L219
|
27044
27293
|
|
27045
27294
|
Implementation:
|
27046
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#
|
27295
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L219-L221
|
27047
27296
|
|
27048
27297
|
";
|
27049
27298
|
|
@@ -27055,10 +27304,10 @@ Construct a matrix from 4 blocks.
|
|
27055
27304
|
Extra doc: https://github.com/casadi/casadi/wiki/L_3m
|
27056
27305
|
|
27057
27306
|
Doc source:
|
27058
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#
|
27307
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L234
|
27059
27308
|
|
27060
27309
|
Implementation:
|
27061
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#
|
27310
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L234-L236
|
27062
27311
|
|
27063
27312
|
> MatType casadi::SparsityInterface::blockcat(const MatType &A, const MatType &B, const MatType &C, const MatType &D)
|
27064
27313
|
------------------------------------------------------------------------
|
@@ -27068,10 +27317,10 @@ Construct a matrix from 4 blocks.
|
|
27068
27317
|
Extra doc: https://github.com/casadi/casadi/wiki/L_3m
|
27069
27318
|
|
27070
27319
|
Doc source:
|
27071
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#
|
27320
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L234
|
27072
27321
|
|
27073
27322
|
Implementation:
|
27074
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#
|
27323
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L234-L236
|
27075
27324
|
|
27076
27325
|
";
|
27077
27326
|
|
@@ -27096,10 +27345,10 @@ blockcat(blocksplit(x,..., ...)) = x
|
|
27096
27345
|
Extra doc: https://github.com/casadi/casadi/wiki/L_3o
|
27097
27346
|
|
27098
27347
|
Doc source:
|
27099
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#
|
27348
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L262
|
27100
27349
|
|
27101
27350
|
Implementation:
|
27102
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#
|
27351
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L262-L264
|
27103
27352
|
|
27104
27353
|
> std::vector< std::vector< MatType > > casadi::SparsityInterface::blocksplit(const MatType &x, casadi_int vert_incr=1, casadi_int horz_incr=1)
|
27105
27354
|
------------------------------------------------------------------------
|
@@ -27120,10 +27369,10 @@ blockcat(blocksplit(x,..., ...)) = x
|
|
27120
27369
|
Extra doc: https://github.com/casadi/casadi/wiki/L_3o
|
27121
27370
|
|
27122
27371
|
Doc source:
|
27123
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#
|
27372
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L262
|
27124
27373
|
|
27125
27374
|
Implementation:
|
27126
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#
|
27375
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L262-L264
|
27127
27376
|
|
27128
27377
|
";
|
27129
27378
|
|
@@ -27137,10 +27386,10 @@ Concatenate along diagonal, six matrices.
|
|
27137
27386
|
Extra doc: https://github.com/casadi/casadi/wiki/L_4o
|
27138
27387
|
|
27139
27388
|
Doc source:
|
27140
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#
|
27389
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L578
|
27141
27390
|
|
27142
27391
|
Implementation:
|
27143
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#
|
27392
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L578-L581
|
27144
27393
|
|
27145
27394
|
> MatType casadi::SparsityInterface::diagcat(const MatType &x, const MatType &y, const MatType &z, const MatType &w, const MatType &v, const MatType &u)
|
27146
27395
|
------------------------------------------------------------------------
|
@@ -27150,10 +27399,10 @@ Concatenate along diagonal, six matrices.
|
|
27150
27399
|
Extra doc: https://github.com/casadi/casadi/wiki/L_4o
|
27151
27400
|
|
27152
27401
|
Doc source:
|
27153
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#
|
27402
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L578
|
27154
27403
|
|
27155
27404
|
Implementation:
|
27156
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#
|
27405
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L578-L581
|
27157
27406
|
|
27158
27407
|
";
|
27159
27408
|
|
@@ -27178,10 +27427,10 @@ diagsplit(diagsplit(x, ...)) = x
|
|
27178
27427
|
Extra doc: https://github.com/casadi/casadi/wiki/L_3t
|
27179
27428
|
|
27180
27429
|
Doc source:
|
27181
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#
|
27430
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L324
|
27182
27431
|
|
27183
27432
|
Implementation:
|
27184
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#
|
27433
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L324-L326
|
27185
27434
|
|
27186
27435
|
> std::vector< MatType > casadi::SparsityInterface::diagsplit(const MatType &x, casadi_int incr1, casadi_int incr2)
|
27187
27436
|
------------------------------------------------------------------------
|
@@ -27202,10 +27451,10 @@ diagsplit(diagsplit(x, ...)) = x
|
|
27202
27451
|
Extra doc: https://github.com/casadi/casadi/wiki/L_3t
|
27203
27452
|
|
27204
27453
|
Doc source:
|
27205
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#
|
27454
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L324
|
27206
27455
|
|
27207
27456
|
Implementation:
|
27208
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#
|
27457
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L324-L326
|
27209
27458
|
|
27210
27459
|
";
|
27211
27460
|
|
@@ -27219,10 +27468,10 @@ concatenate vertically while vectorizing all arguments with vec
|
|
27219
27468
|
Extra doc: https://github.com/casadi/casadi/wiki/L_3u
|
27220
27469
|
|
27221
27470
|
Doc source:
|
27222
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#
|
27471
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L331
|
27223
27472
|
|
27224
27473
|
Implementation:
|
27225
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#
|
27474
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L331-L333
|
27226
27475
|
|
27227
27476
|
";
|
27228
27477
|
|
@@ -27234,10 +27483,10 @@ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp
|
|
27234
27483
|
Extra doc: https://github.com/casadi/casadi/wiki/L_3w
|
27235
27484
|
|
27236
27485
|
Doc source:
|
27237
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#
|
27486
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L345
|
27238
27487
|
|
27239
27488
|
Implementation:
|
27240
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#
|
27489
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L345-L347
|
27241
27490
|
|
27242
27491
|
> MatType casadi::SparsityInterface::mtimes(const std::vector< MatType > &args)
|
27243
27492
|
------------------------------------------------------------------------
|
@@ -27247,10 +27496,10 @@ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp
|
|
27247
27496
|
Extra doc: https://github.com/casadi/casadi/wiki/L_3w
|
27248
27497
|
|
27249
27498
|
Doc source:
|
27250
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#
|
27499
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L345
|
27251
27500
|
|
27252
27501
|
Implementation:
|
27253
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#
|
27502
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L345-L347
|
27254
27503
|
|
27255
27504
|
";
|
27256
27505
|
|
@@ -27272,10 +27521,10 @@ z+mtimes(x,y).project(z.sparsity()).
|
|
27272
27521
|
Extra doc: https://github.com/casadi/casadi/wiki/L_3x
|
27273
27522
|
|
27274
27523
|
Doc source:
|
27275
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#
|
27524
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L358
|
27276
27525
|
|
27277
27526
|
Implementation:
|
27278
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#
|
27527
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L358-L360
|
27279
27528
|
|
27280
27529
|
";
|
27281
27530
|
|
@@ -27287,10 +27536,10 @@ Transpose.
|
|
27287
27536
|
Extra doc: https://github.com/casadi/casadi/wiki/L_3y
|
27288
27537
|
|
27289
27538
|
Doc source:
|
27290
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#
|
27539
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L365
|
27291
27540
|
|
27292
27541
|
Implementation:
|
27293
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#
|
27542
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L365-L367
|
27294
27543
|
|
27295
27544
|
";
|
27296
27545
|
|
@@ -27316,10 +27565,10 @@ d
|
|
27316
27565
|
Extra doc: https://github.com/casadi/casadi/wiki/L_3z
|
27317
27566
|
|
27318
27567
|
Doc source:
|
27319
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#
|
27568
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L386
|
27320
27569
|
|
27321
27570
|
Implementation:
|
27322
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#
|
27571
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L386-L388
|
27323
27572
|
|
27324
27573
|
";
|
27325
27574
|
|
@@ -27331,10 +27580,10 @@ Reshape the matrix.
|
|
27331
27580
|
Extra doc: https://github.com/casadi/casadi/wiki/L_42
|
27332
27581
|
|
27333
27582
|
Doc source:
|
27334
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#
|
27583
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L407
|
27335
27584
|
|
27336
27585
|
Implementation:
|
27337
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#
|
27586
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L407-L409
|
27338
27587
|
|
27339
27588
|
> MatType casadi::SparsityInterface::reshape(const MatType &x, const Sparsity &sp)
|
27340
27589
|
------------------------------------------------------------------------
|
@@ -27344,10 +27593,10 @@ Reshape the matrix.
|
|
27344
27593
|
Extra doc: https://github.com/casadi/casadi/wiki/L_42
|
27345
27594
|
|
27346
27595
|
Doc source:
|
27347
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#
|
27596
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L407
|
27348
27597
|
|
27349
27598
|
Implementation:
|
27350
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#
|
27599
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L407-L409
|
27351
27600
|
|
27352
27601
|
";
|
27353
27602
|
|
@@ -27361,10 +27610,10 @@ Cast matrix nonzeros to different Sparsity.
|
|
27361
27610
|
Extra doc: https://github.com/casadi/casadi/wiki/L_24z
|
27362
27611
|
|
27363
27612
|
Doc source:
|
27364
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#
|
27613
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L414
|
27365
27614
|
|
27366
27615
|
Implementation:
|
27367
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#
|
27616
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L414-L416
|
27368
27617
|
|
27369
27618
|
";
|
27370
27619
|
|
@@ -27376,10 +27625,10 @@ Obtain the structural rank of a sparsity-pattern.
|
|
27376
27625
|
Extra doc: https://github.com/casadi/casadi/wiki/L_43
|
27377
27626
|
|
27378
27627
|
Doc source:
|
27379
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#
|
27628
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L421
|
27380
27629
|
|
27381
27630
|
Implementation:
|
27382
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#
|
27631
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L421-L423
|
27383
27632
|
|
27384
27633
|
";
|
27385
27634
|
|
@@ -27391,10 +27640,10 @@ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp
|
|
27391
27640
|
Extra doc: https://github.com/casadi/casadi/wiki/L_44
|
27392
27641
|
|
27393
27642
|
Doc source:
|
27394
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#
|
27643
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L428
|
27395
27644
|
|
27396
27645
|
Implementation:
|
27397
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#
|
27646
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L428-L430
|
27398
27647
|
|
27399
27648
|
";
|
27400
27649
|
|
@@ -27406,10 +27655,10 @@ Get the upper triangular part of a matrix.
|
|
27406
27655
|
Extra doc: https://github.com/casadi/casadi/wiki/L_45
|
27407
27656
|
|
27408
27657
|
Doc source:
|
27409
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#
|
27658
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L435
|
27410
27659
|
|
27411
27660
|
Implementation:
|
27412
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#
|
27661
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L435-L437
|
27413
27662
|
|
27414
27663
|
";
|
27415
27664
|
|
@@ -27421,10 +27670,10 @@ Get the lower triangular part of a matrix.
|
|
27421
27670
|
Extra doc: https://github.com/casadi/casadi/wiki/L_46
|
27422
27671
|
|
27423
27672
|
Doc source:
|
27424
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#
|
27673
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L442
|
27425
27674
|
|
27426
27675
|
Implementation:
|
27427
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#
|
27676
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L442-L444
|
27428
27677
|
|
27429
27678
|
";
|
27430
27679
|
|
@@ -27438,10 +27687,10 @@ Creates a block matrix in which each element (i, j) is a_ij*b
|
|
27438
27687
|
Extra doc: https://github.com/casadi/casadi/wiki/L_47
|
27439
27688
|
|
27440
27689
|
Doc source:
|
27441
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#
|
27690
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L451
|
27442
27691
|
|
27443
27692
|
Implementation:
|
27444
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#
|
27693
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L451-L453
|
27445
27694
|
|
27446
27695
|
";
|
27447
27696
|
|
@@ -27453,10 +27702,10 @@ Repeat matrix A n times vertically and m times horizontally.
|
|
27453
27702
|
Extra doc: https://github.com/casadi/casadi/wiki/L_49
|
27454
27703
|
|
27455
27704
|
Doc source:
|
27456
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#
|
27705
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L465
|
27457
27706
|
|
27458
27707
|
Implementation:
|
27459
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#
|
27708
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L465-L467
|
27460
27709
|
|
27461
27710
|
> MatType casadi::SparsityInterface::repmat(const MatType &A, const std::pair< casadi_int, casadi_int > &rc)
|
27462
27711
|
------------------------------------------------------------------------
|
@@ -27466,10 +27715,10 @@ Repeat matrix A n times vertically and m times horizontally.
|
|
27466
27715
|
Extra doc: https://github.com/casadi/casadi/wiki/L_49
|
27467
27716
|
|
27468
27717
|
Doc source:
|
27469
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#
|
27718
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L465
|
27470
27719
|
|
27471
27720
|
Implementation:
|
27472
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#
|
27721
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L465-L467
|
27473
27722
|
|
27474
27723
|
";
|
27475
27724
|
|
@@ -27483,10 +27732,10 @@ Return a row-wise summation of elements.
|
|
27483
27732
|
Extra doc: https://github.com/casadi/casadi/wiki/L_4p
|
27484
27733
|
|
27485
27734
|
Doc source:
|
27486
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#
|
27735
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L586
|
27487
27736
|
|
27488
27737
|
Implementation:
|
27489
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#
|
27738
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L586-L586
|
27490
27739
|
|
27491
27740
|
";
|
27492
27741
|
|
@@ -27498,10 +27747,10 @@ Return a column-wise summation of elements.
|
|
27498
27747
|
Extra doc: https://github.com/casadi/casadi/wiki/L_4q
|
27499
27748
|
|
27500
27749
|
Doc source:
|
27501
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#
|
27750
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L591
|
27502
27751
|
|
27503
27752
|
Implementation:
|
27504
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#
|
27753
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L591-L591
|
27505
27754
|
|
27506
27755
|
";
|
27507
27756
|
|
@@ -29282,7 +29531,10 @@ https://github.com/casadi/casadi/blob/develop/casadi/core/shared_object.cpp#L129
|
|
29282
29531
|
";
|
29283
29532
|
|
29284
29533
|
|
29285
|
-
// File:
|
29534
|
+
// File: namespace_0d373.xml
|
29535
|
+
|
29536
|
+
|
29537
|
+
// File: namespacealpaqa.xml
|
29286
29538
|
|
29287
29539
|
|
29288
29540
|
// File: namespacecasadi.xml
|
@@ -31232,6 +31484,8 @@ List of plugins
|
|
31232
31484
|
|
31233
31485
|
- cplex
|
31234
31486
|
|
31487
|
+
- fatrop
|
31488
|
+
|
31235
31489
|
- gurobi
|
31236
31490
|
|
31237
31491
|
- highs
|
@@ -31390,6 +31644,61 @@ Extra doc: https://github.com/casadi/casadi/wiki/L_22a
|
|
31390
31644
|
|
31391
31645
|
|
31392
31646
|
|
31647
|
+
--------------------------------------------------------------------------------
|
31648
|
+
|
31649
|
+
fatrop
|
31650
|
+
------
|
31651
|
+
|
31652
|
+
|
31653
|
+
|
31654
|
+
Interface to Fatrop Solver
|
31655
|
+
|
31656
|
+
In order to use this interface, you must:
|
31657
|
+
|
31658
|
+
Decision variables must only by state and control, and the variable
|
31659
|
+
|
31660
|
+
ordering must be [x0 u0 x1 u1 ...]
|
31661
|
+
|
31662
|
+
The constraints must be in order: [ gap0 lincon0 gap1 lincon1 ]
|
31663
|
+
|
31664
|
+
gap: Ak+1 = Ak xk + Bk uk lincon: yk= Ck xk + Dk uk
|
31665
|
+
|
31666
|
+
|
31667
|
+
|
31668
|
+
::
|
31669
|
+
|
31670
|
+
A0 B0 -I
|
31671
|
+
C0 D0
|
31672
|
+
A1 B1 -I
|
31673
|
+
C1 D1
|
31674
|
+
|
31675
|
+
|
31676
|
+
|
31677
|
+
where I must be a diagonal sparse matrix
|
31678
|
+
Either supply all of N, nx, ng, nu
|
31679
|
+
options or rely on automatic
|
31680
|
+
detection
|
31681
|
+
|
31682
|
+
Extra doc: https://github.com/casadi/casadi/wiki/L_27g
|
31683
|
+
|
31684
|
+
>List of available options
|
31685
|
+
|
31686
|
+
+--------+--------------+-----------------------------------------------+
|
31687
|
+
| Id | Type | Description |
|
31688
|
+
+========+==============+===============================================+
|
31689
|
+
| N | OT_INT | OCP horizon |
|
31690
|
+
+--------+--------------+-----------------------------------------------+
|
31691
|
+
| fatrop | OT_DICT | Options to be passed to fatrop |
|
31692
|
+
+--------+--------------+-----------------------------------------------+
|
31693
|
+
| ng | OT_INTVECTOR | Number of non-dynamic constraints, length N+1 |
|
31694
|
+
+--------+--------------+-----------------------------------------------+
|
31695
|
+
| nu | OT_INTVECTOR | Number of controls, length N |
|
31696
|
+
+--------+--------------+-----------------------------------------------+
|
31697
|
+
| nx | OT_INTVECTOR | Number of states, length N+1 |
|
31698
|
+
+--------+--------------+-----------------------------------------------+
|
31699
|
+
|
31700
|
+
|
31701
|
+
|
31393
31702
|
--------------------------------------------------------------------------------
|
31394
31703
|
|
31395
31704
|
gurobi
|
@@ -31453,7 +31762,7 @@ hpipm
|
|
31453
31762
|
|
31454
31763
|
|
31455
31764
|
|
31456
|
-
Interface to
|
31765
|
+
Interface to HPIPM Solver
|
31457
31766
|
|
31458
31767
|
In order to use this interface, you must:
|
31459
31768
|
|
@@ -35246,6 +35555,10 @@ https://github.com/casadi/casadi/blob/develop/casadi/core/slice.cpp#L255-L289
|
|
35246
35555
|
|
35247
35556
|
[INTERNAL] ";
|
35248
35557
|
|
35558
|
+
%feature("docstring") casadi::IndexRecution::casadi_sleqp_func_create "
|
35559
|
+
|
35560
|
+
[INTERNAL] ";
|
35561
|
+
|
35249
35562
|
%feature("docstring") casadi::IndexRecution::slicot_mb03vd "
|
35250
35563
|
|
35251
35564
|
[INTERNAL] ";
|
@@ -35266,6 +35579,9 @@ https://github.com/casadi/casadi/blob/develop/casadi/core/slice.cpp#L255-L289
|
|
35266
35579
|
// File: namespacecasadi_1_1IndexRecution.xml
|
35267
35580
|
|
35268
35581
|
|
35582
|
+
// File: namespacefatrop.xml
|
35583
|
+
|
35584
|
+
|
35269
35585
|
// File: namespaceproxsuite_1_1proxqp.xml
|
35270
35586
|
|
35271
35587
|
|