casadi 3.6.5__cp38-none-win_amd64.whl → 3.6.7__cp38-none-win_amd64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (505) hide show
  1. casadi/_casadi.pyd +0 -0
  2. casadi/bin/libtinyxml2.dll +0 -0
  3. casadi/blasfeo.lib +0 -0
  4. casadi/casadi-cli.exe +0 -0
  5. casadi/casadi.lib +0 -0
  6. casadi/casadi.py +739 -308
  7. casadi/cbc.exe +0 -0
  8. casadi/clp.exe +0 -0
  9. casadi/cmake/casadi-config-version.cmake +1 -1
  10. casadi/cmake/highs/highs-config.cmake +7 -14
  11. casadi/cmake/highs/highs-targets-release.cmake +13 -13
  12. casadi/cmake/highs/highs-targets.cmake +11 -9
  13. casadi/daqp.lib +0 -0
  14. casadi/fatrop.lib +0 -0
  15. casadi/highs.exe +0 -0
  16. casadi/highs.lib +0 -0
  17. casadi/hpipm.lib +0 -0
  18. casadi/include/casadi/casadi.i +3 -0
  19. casadi/include/casadi/casadi_c.h +2 -0
  20. casadi/include/casadi/config.h +8 -8
  21. casadi/include/casadi/core/casadi_common.hpp +1 -0
  22. casadi/include/casadi/core/casadi_misc.hpp +52 -0
  23. casadi/include/casadi/core/casadi_types.hpp +3 -2
  24. casadi/include/casadi/core/code_generator.hpp +30 -1
  25. casadi/include/casadi/core/global_options.hpp +2 -0
  26. casadi/include/casadi/core/mx.hpp +18 -3
  27. casadi/include/casadi/core/optistack.hpp +23 -0
  28. casadi/include/casadi/core/runtime/casadi_nlp.hpp +19 -4
  29. casadi/include/casadi/core/runtime/casadi_ocp_block.hpp +55 -0
  30. casadi/include/casadi/core/runtime/casadi_oracle.hpp +44 -0
  31. casadi/include/casadi/core/runtime/casadi_oracle_callback.hpp +39 -0
  32. casadi/include/casadi/core/runtime/casadi_runtime.hpp +4 -1
  33. casadi/include/casadi/core/runtime/casadi_scaled_copy.hpp +31 -0
  34. casadi/include/casadi/core/serializing_stream.hpp +2 -2
  35. casadi/include/casadi/core/sparsity.hpp +7 -0
  36. casadi/include/casadi/doc.i +1513 -1016
  37. casadi/include/casadi/doc_merged.i +965 -719
  38. casadi/include/casadi/mem.h +1 -0
  39. casadi/include/daqp/api.h +46 -0
  40. casadi/include/daqp/auxiliary.h +29 -0
  41. casadi/include/daqp/bnb.h +32 -0
  42. casadi/include/daqp/codegen.h +18 -0
  43. casadi/include/daqp/constants.h +92 -0
  44. casadi/include/daqp/daqp.h +22 -0
  45. casadi/include/daqp/daqp_prox.h +18 -0
  46. casadi/include/daqp/factorization.h +18 -0
  47. casadi/include/daqp/types.h +161 -0
  48. casadi/include/daqp/utils.h +44 -0
  49. casadi/include/dlfcn.h +94 -0
  50. casadi/include/fatrop/auxiliary/Common.hpp +34 -0
  51. casadi/include/fatrop/auxiliary/DynamicLib.hpp +34 -0
  52. casadi/include/fatrop/auxiliary/FatropOptions.hpp +68 -0
  53. casadi/include/fatrop/auxiliary/FatropVector.hpp +143 -0
  54. casadi/include/fatrop/auxiliary/LinearAlgebra.hpp +88 -0
  55. casadi/include/fatrop/auxiliary/VectorUtils.hpp +54 -0
  56. casadi/include/fatrop/blasfeo_wrapper/LinearAlgebraBlasfeo.hpp +493 -0
  57. casadi/include/fatrop/fatrop.hpp +39 -0
  58. casadi/include/fatrop/function_evaluation/CasadiCodegen.hpp +104 -0
  59. casadi/include/fatrop/function_evaluation/FunctionEvaluation.hpp +60 -0
  60. casadi/include/fatrop/json/json.h +946 -0
  61. casadi/include/fatrop/ocp/CasadiCApiUserdataWrap.hpp +87 -0
  62. casadi/include/fatrop/ocp/DuInfEvaluator.hpp +38 -0
  63. casadi/include/fatrop/ocp/FatropOCP.hpp +161 -0
  64. casadi/include/fatrop/ocp/FatropOCPBuilder.hpp +52 -0
  65. casadi/include/fatrop/ocp/FatropOCPResto.hpp +299 -0
  66. casadi/include/fatrop/ocp/OCP.hpp +82 -0
  67. casadi/include/fatrop/ocp/OCPAbstract.hpp +254 -0
  68. casadi/include/fatrop/ocp/OCPAdapter.hpp +197 -0
  69. casadi/include/fatrop/ocp/OCPCInterface.h +289 -0
  70. casadi/include/fatrop/ocp/OCPDims.hpp +60 -0
  71. casadi/include/fatrop/ocp/OCPInitializer.hpp +41 -0
  72. casadi/include/fatrop/ocp/OCPKKT.hpp +69 -0
  73. casadi/include/fatrop/ocp/OCPLSRiccati.hpp +198 -0
  74. casadi/include/fatrop/ocp/OCPLSScaler.hpp +66 -0
  75. casadi/include/fatrop/ocp/OCPLinearSolver.hpp +75 -0
  76. casadi/include/fatrop/ocp/OCPNoScaling.hpp +42 -0
  77. casadi/include/fatrop/ocp/OCPScalingMethod.hpp +42 -0
  78. casadi/include/fatrop/ocp/StageOCP.hpp +592 -0
  79. casadi/include/fatrop/ocp/StageOCPApplication.hpp +242 -0
  80. casadi/include/fatrop/ocp/StageOCPExpressions.hpp +182 -0
  81. casadi/include/fatrop/ocp/UStageEvalAbstract.hpp +168 -0
  82. casadi/include/fatrop/ocp/UStageOCPImpl.hpp +152 -0
  83. casadi/include/fatrop/quasi_newton/bfgs.hpp +159 -0
  84. casadi/include/fatrop/solver/AlgBuilder.hpp +76 -0
  85. casadi/include/fatrop/solver/AlgStrategy.hpp +33 -0
  86. casadi/include/fatrop/solver/FatropAlg.hpp +121 -0
  87. casadi/include/fatrop/solver/FatropData.hpp +188 -0
  88. casadi/include/fatrop/solver/FatropOptions.hpp +95 -0
  89. casadi/include/fatrop/solver/FatropPrinter.hpp +65 -0
  90. casadi/include/fatrop/solver/FatropStats.hpp +63 -0
  91. casadi/include/fatrop/solver/Filter.hpp +54 -0
  92. casadi/include/fatrop/solver/IterationData.hpp +56 -0
  93. casadi/include/fatrop/solver/LineSearch.hpp +86 -0
  94. casadi/include/fatrop/solver/NLPL1.hpp +263 -0
  95. casadi/include/fatrop/templates/NLPAlg.hpp +104 -0
  96. casadi/include/highs/HConfig.h +6 -5
  97. casadi/include/highs/Highs.h +93 -23
  98. casadi/include/highs/filereaderlp/def.hpp +19 -0
  99. casadi/include/highs/interfaces/highs_c_api.h +200 -24
  100. casadi/include/highs/io/Filereader.h +1 -1
  101. casadi/include/highs/io/FilereaderEms.h +1 -1
  102. casadi/include/highs/io/FilereaderLp.h +1 -1
  103. casadi/include/highs/io/FilereaderMps.h +1 -1
  104. casadi/include/highs/io/HMPSIO.h +1 -1
  105. casadi/include/highs/io/HMpsFF.h +5 -3
  106. casadi/include/highs/io/HighsIO.h +18 -8
  107. casadi/include/highs/io/LoadOptions.h +1 -1
  108. casadi/include/highs/ipm/IpxSolution.h +35 -0
  109. casadi/include/highs/ipm/IpxWrapper.h +1 -1
  110. casadi/include/highs/ipm/basiclu/basiclu.h +161 -0
  111. casadi/include/highs/ipm/basiclu/basiclu_factorize.h +247 -0
  112. casadi/include/highs/ipm/basiclu/basiclu_get_factors.h +108 -0
  113. casadi/include/highs/ipm/basiclu/basiclu_initialize.h +119 -0
  114. casadi/include/highs/ipm/basiclu/basiclu_obj_factorize.h +34 -0
  115. casadi/include/highs/ipm/basiclu/basiclu_obj_free.h +19 -0
  116. casadi/include/highs/ipm/basiclu/basiclu_obj_get_factors.h +34 -0
  117. casadi/include/highs/ipm/basiclu/basiclu_obj_initialize.h +46 -0
  118. casadi/include/highs/ipm/basiclu/basiclu_obj_solve_dense.h +29 -0
  119. casadi/include/highs/ipm/basiclu/basiclu_obj_solve_for_update.h +42 -0
  120. casadi/include/highs/ipm/basiclu/basiclu_obj_solve_sparse.h +32 -0
  121. casadi/include/highs/ipm/basiclu/basiclu_obj_update.h +31 -0
  122. casadi/include/highs/ipm/basiclu/basiclu_object.h +30 -0
  123. casadi/include/highs/ipm/basiclu/basiclu_solve_dense.h +75 -0
  124. casadi/include/highs/ipm/basiclu/basiclu_solve_for_update.h +169 -0
  125. casadi/include/highs/ipm/basiclu/basiclu_solve_sparse.h +112 -0
  126. casadi/include/highs/ipm/basiclu/basiclu_update.h +125 -0
  127. casadi/include/highs/ipm/basiclu/lu_def.h +39 -0
  128. casadi/include/highs/ipm/basiclu/lu_file.h +21 -0
  129. casadi/include/highs/ipm/basiclu/lu_internal.h +220 -0
  130. casadi/include/highs/ipm/basiclu/lu_list.h +168 -0
  131. casadi/include/highs/ipm/ipx/basiclu_kernel.h +20 -0
  132. casadi/include/highs/ipm/ipx/basiclu_wrapper.h +47 -0
  133. casadi/include/highs/ipm/ipx/basis.h +351 -0
  134. casadi/include/highs/ipm/ipx/conjugate_residuals.h +74 -0
  135. casadi/include/highs/ipm/ipx/control.h +163 -0
  136. casadi/include/highs/ipm/ipx/crossover.h +157 -0
  137. casadi/include/highs/ipm/ipx/diagonal_precond.h +45 -0
  138. casadi/include/highs/ipm/ipx/forrest_tomlin.h +102 -0
  139. casadi/include/highs/ipm/ipx/guess_basis.h +21 -0
  140. casadi/include/highs/ipm/ipx/indexed_vector.h +113 -0
  141. casadi/include/highs/ipm/ipx/info.h +27 -0
  142. casadi/include/highs/ipm/ipx/ipm.h +94 -0
  143. casadi/include/highs/ipm/ipx/ipx_c.h +47 -0
  144. casadi/include/highs/ipm/ipx/ipx_config.h +9 -0
  145. casadi/include/highs/ipm/ipx/ipx_info.h +111 -0
  146. casadi/include/highs/ipm/ipx/ipx_internal.h +88 -0
  147. casadi/include/highs/ipm/ipx/ipx_parameters.h +75 -0
  148. casadi/include/highs/ipm/ipx/ipx_status.h +57 -0
  149. casadi/include/highs/ipm/ipx/iterate.h +328 -0
  150. casadi/include/highs/ipm/ipx/kkt_solver.h +70 -0
  151. casadi/include/highs/ipm/ipx/kkt_solver_basis.h +66 -0
  152. casadi/include/highs/ipm/ipx/kkt_solver_diag.h +48 -0
  153. casadi/include/highs/ipm/ipx/linear_operator.h +26 -0
  154. casadi/include/highs/ipm/ipx/lp_solver.h +201 -0
  155. casadi/include/highs/ipm/ipx/lu_factorization.h +79 -0
  156. casadi/include/highs/ipm/ipx/lu_update.h +129 -0
  157. casadi/include/highs/ipm/ipx/maxvolume.h +54 -0
  158. casadi/include/highs/ipm/ipx/model.h +409 -0
  159. casadi/include/highs/ipm/ipx/multistream.h +52 -0
  160. casadi/include/highs/ipm/ipx/normal_matrix.h +44 -0
  161. casadi/include/highs/ipm/ipx/power_method.h +44 -0
  162. casadi/include/highs/ipm/ipx/sparse_matrix.h +195 -0
  163. casadi/include/highs/ipm/ipx/sparse_utils.h +58 -0
  164. casadi/include/highs/ipm/ipx/splitted_normal_matrix.h +63 -0
  165. casadi/include/highs/ipm/ipx/starting_basis.h +39 -0
  166. casadi/include/highs/ipm/ipx/symbolic_invert.h +29 -0
  167. casadi/include/highs/ipm/ipx/timer.h +24 -0
  168. casadi/include/highs/ipm/ipx/utils.h +39 -0
  169. casadi/include/highs/lp_data/HConst.h +20 -10
  170. casadi/include/highs/lp_data/HStruct.h +23 -1
  171. casadi/include/highs/lp_data/HighsAnalysis.h +1 -1
  172. casadi/include/highs/lp_data/HighsCallback.h +10 -3
  173. casadi/include/highs/lp_data/HighsCallbackStruct.h +31 -5
  174. casadi/include/highs/lp_data/HighsDebug.h +1 -1
  175. casadi/include/highs/lp_data/HighsInfo.h +20 -2
  176. casadi/include/highs/lp_data/HighsInfoDebug.h +1 -1
  177. casadi/include/highs/lp_data/HighsLp.h +17 -1
  178. casadi/include/highs/lp_data/HighsLpSolverObject.h +1 -1
  179. casadi/include/highs/lp_data/HighsLpUtils.h +19 -19
  180. casadi/include/highs/lp_data/HighsModelUtils.h +1 -1
  181. casadi/include/highs/lp_data/HighsOptions.h +237 -10
  182. casadi/include/highs/lp_data/HighsRanging.h +1 -1
  183. casadi/include/highs/lp_data/HighsRuntimeOptions.h +2 -2
  184. casadi/include/highs/lp_data/HighsSolution.h +2 -2
  185. casadi/include/highs/lp_data/HighsSolutionDebug.h +1 -1
  186. casadi/include/highs/lp_data/HighsSolve.h +3 -1
  187. casadi/include/highs/lp_data/HighsStatus.h +1 -1
  188. casadi/include/highs/mip/HighsCliqueTable.h +4 -4
  189. casadi/include/highs/mip/HighsConflictPool.h +1 -1
  190. casadi/include/highs/mip/HighsCutGeneration.h +1 -1
  191. casadi/include/highs/mip/HighsCutPool.h +2 -2
  192. casadi/include/highs/mip/HighsDebugSol.h +22 -29
  193. casadi/include/highs/mip/HighsDomain.h +10 -2
  194. casadi/include/highs/mip/HighsDomainChange.h +1 -1
  195. casadi/include/highs/mip/HighsDynamicRowMatrix.h +5 -3
  196. casadi/include/highs/mip/HighsGFkSolve.h +3 -3
  197. casadi/include/highs/mip/HighsImplications.h +3 -3
  198. casadi/include/highs/mip/HighsLpAggregator.h +1 -1
  199. casadi/include/highs/mip/HighsLpRelaxation.h +6 -1
  200. casadi/include/highs/mip/HighsMipSolver.h +4 -2
  201. casadi/include/highs/mip/HighsMipSolverData.h +47 -4
  202. casadi/include/highs/mip/HighsModkSeparator.h +2 -2
  203. casadi/include/highs/mip/HighsNodeQueue.h +5 -3
  204. casadi/include/highs/mip/HighsObjectiveFunction.h +1 -1
  205. casadi/include/highs/mip/HighsPathSeparator.h +2 -2
  206. casadi/include/highs/mip/HighsPrimalHeuristics.h +1 -1
  207. casadi/include/highs/mip/HighsPseudocost.h +35 -23
  208. casadi/include/highs/mip/HighsRedcostFixing.h +1 -1
  209. casadi/include/highs/mip/HighsSearch.h +2 -1
  210. casadi/include/highs/mip/HighsSeparation.h +1 -1
  211. casadi/include/highs/mip/HighsSeparator.h +1 -1
  212. casadi/include/highs/mip/HighsTableauSeparator.h +1 -1
  213. casadi/include/highs/mip/HighsTransformedLp.h +1 -1
  214. casadi/include/highs/model/HighsHessian.h +5 -0
  215. casadi/include/highs/model/HighsHessianUtils.h +2 -0
  216. casadi/include/highs/model/HighsModel.h +10 -1
  217. casadi/include/highs/parallel/HighsMutex.h +2 -1
  218. casadi/include/highs/parallel/HighsParallel.h +7 -2
  219. casadi/include/highs/parallel/HighsTask.h +1 -2
  220. casadi/include/highs/pdlp/CupdlpWrapper.h +93 -0
  221. casadi/include/highs/pdlp/cupdlp/cupdlp_cs.h +41 -0
  222. casadi/include/highs/pdlp/cupdlp/cupdlp_defs.h +423 -0
  223. casadi/include/highs/pdlp/cupdlp/cupdlp_linalg.h +183 -0
  224. casadi/include/highs/pdlp/cupdlp/cupdlp_proj.h +19 -0
  225. casadi/include/highs/pdlp/cupdlp/cupdlp_restart.h +31 -0
  226. casadi/include/highs/pdlp/cupdlp/cupdlp_scaling_cuda.h +28 -0
  227. casadi/include/highs/pdlp/cupdlp/cupdlp_solver.h +98 -0
  228. casadi/include/highs/pdlp/cupdlp/cupdlp_step.h +33 -0
  229. casadi/include/highs/pdlp/cupdlp/cupdlp_utils.c +1726 -0
  230. casadi/include/highs/pdqsort/pdqsort.h +532 -0
  231. casadi/include/highs/presolve/HPresolve.h +27 -14
  232. casadi/include/highs/presolve/HPresolveAnalysis.h +1 -1
  233. casadi/include/highs/presolve/HighsPostsolveStack.h +92 -68
  234. casadi/include/highs/presolve/HighsSymmetry.h +6 -5
  235. casadi/include/highs/presolve/ICrash.h +8 -2
  236. casadi/include/highs/presolve/ICrashUtil.h +1 -1
  237. casadi/include/highs/presolve/ICrashX.h +1 -1
  238. casadi/include/highs/presolve/PresolveComponent.h +1 -1
  239. casadi/include/highs/qpsolver/a_asm.hpp +23 -12
  240. casadi/include/highs/qpsolver/a_quass.hpp +8 -1
  241. casadi/include/highs/qpsolver/basis.hpp +150 -0
  242. casadi/include/highs/qpsolver/crashsolution.hpp +12 -0
  243. casadi/include/highs/qpsolver/dantzigpricing.hpp +72 -0
  244. casadi/include/highs/qpsolver/devexpricing.hpp +99 -0
  245. casadi/include/highs/qpsolver/eventhandler.hpp +23 -0
  246. casadi/include/highs/qpsolver/factor.hpp +400 -0
  247. casadi/include/highs/qpsolver/feasibility_bounded.hpp +105 -0
  248. casadi/include/highs/qpsolver/feasibility_highs.hpp +270 -0
  249. casadi/include/highs/qpsolver/gradient.hpp +39 -0
  250. casadi/include/highs/qpsolver/instance.hpp +63 -0
  251. casadi/include/highs/qpsolver/matrix.hpp +335 -0
  252. casadi/include/highs/qpsolver/pricing.hpp +15 -0
  253. casadi/include/highs/qpsolver/qpconst.hpp +27 -0
  254. casadi/include/highs/qpsolver/{vector.hpp → qpvector.hpp} +25 -25
  255. casadi/include/highs/qpsolver/quass.hpp +1 -1
  256. casadi/include/highs/qpsolver/ratiotest.hpp +19 -0
  257. casadi/include/highs/qpsolver/runtime.hpp +38 -0
  258. casadi/include/highs/qpsolver/settings.hpp +57 -0
  259. casadi/include/highs/qpsolver/snippets.hpp +29 -0
  260. casadi/include/highs/qpsolver/statistics.hpp +23 -0
  261. casadi/include/highs/qpsolver/steepestedgepricing.hpp +167 -0
  262. casadi/include/highs/simplex/HApp.h +1 -1
  263. casadi/include/highs/simplex/HEkk.h +52 -18
  264. casadi/include/highs/simplex/HEkkDual.h +1 -1
  265. casadi/include/highs/simplex/HEkkDualRHS.h +6 -7
  266. casadi/include/highs/simplex/HEkkDualRow.h +2 -2
  267. casadi/include/highs/simplex/HEkkPrimal.h +6 -1
  268. casadi/include/highs/simplex/HSimplex.h +1 -3
  269. casadi/include/highs/simplex/HSimplexDebug.h +1 -1
  270. casadi/include/highs/simplex/HSimplexNla.h +1 -1
  271. casadi/include/highs/simplex/HSimplexReport.h +1 -1
  272. casadi/include/highs/simplex/HighsSimplexAnalysis.h +228 -100
  273. casadi/include/highs/simplex/SimplexConst.h +1 -1
  274. casadi/include/highs/simplex/SimplexStruct.h +2 -2
  275. casadi/include/highs/simplex/SimplexTimer.h +1 -1
  276. casadi/include/highs/test/DevKkt.h +1 -1
  277. casadi/include/highs/test/KktCh2.h +1 -1
  278. casadi/include/highs/util/FactorTimer.h +1 -1
  279. casadi/include/highs/util/HFactor.h +35 -6
  280. casadi/include/highs/util/HFactorConst.h +1 -1
  281. casadi/include/highs/util/HFactorDebug.h +1 -1
  282. casadi/include/highs/util/HSet.h +1 -1
  283. casadi/include/highs/util/HVector.h +1 -1
  284. casadi/include/highs/util/HVectorBase.h +1 -1
  285. casadi/include/highs/util/HighsCDouble.h +3 -3
  286. casadi/include/highs/util/HighsComponent.h +1 -1
  287. casadi/include/highs/util/HighsDataStack.h +4 -4
  288. casadi/include/highs/util/HighsDisjointSets.h +1 -1
  289. casadi/include/highs/util/HighsHash.h +28 -21
  290. casadi/include/highs/util/HighsHashTree.h +63 -63
  291. casadi/include/highs/util/HighsInt.h +1 -1
  292. casadi/include/highs/util/HighsIntegers.h +8 -9
  293. casadi/include/highs/util/HighsLinearSumBounds.h +1 -1
  294. casadi/include/highs/util/HighsMatrixPic.h +1 -1
  295. casadi/include/highs/util/HighsMatrixSlice.h +9 -6
  296. casadi/include/highs/util/HighsMatrixUtils.h +1 -1
  297. casadi/include/highs/util/HighsMemoryAllocation.h +55 -0
  298. casadi/include/highs/util/HighsRandom.h +27 -15
  299. casadi/include/highs/util/HighsRbTree.h +2 -2
  300. casadi/include/highs/util/HighsSort.h +7 -7
  301. casadi/include/highs/util/HighsSparseMatrix.h +5 -2
  302. casadi/include/highs/util/HighsSparseVectorSum.h +2 -2
  303. casadi/include/highs/util/HighsSplay.h +1 -1
  304. casadi/include/highs/util/HighsTimer.h +18 -9
  305. casadi/include/highs/util/HighsUtils.h +15 -8
  306. casadi/include/highs/util/stringutil.h +9 -4
  307. casadi/include/highs/zstr/strict_fstream.hpp +237 -0
  308. casadi/include/highs/zstr/zstr.hpp +472 -0
  309. casadi/include/highs_export.h +42 -0
  310. casadi/include/licenses/daqp-external/LICENSE +21 -0
  311. casadi/include/licenses/fatrop-external/LICENSE.txt +165 -0
  312. casadi/include/licenses/fatrop-external/external/blasfeo/LICENSE.txt +26 -0
  313. casadi/include/licenses/fatrop-external/external/pybind11/LICENSE +29 -0
  314. casadi/include/licenses/highs-external/{LICENSE → LICENSE.txt} +1 -1
  315. casadi/include/osqp/constants.h +2 -3
  316. casadi/include/osqp/version.h +9 -0
  317. casadi/include/sleqp/defs.h +2 -2
  318. casadi/ipopt.lib +0 -0
  319. casadi/lapack.lib +0 -0
  320. casadi/lib/libtinyxml2.dll.a +0 -0
  321. casadi/libCbc-3.dll +0 -0
  322. casadi/libCbc.dll.a +0 -0
  323. casadi/libCbcSolver-3.dll +0 -0
  324. casadi/libCbcSolver.dll.a +0 -0
  325. casadi/libCgl-1.dll +0 -0
  326. casadi/libCgl.dll.a +0 -0
  327. casadi/libClp-1.dll +0 -0
  328. casadi/libClp.dll.a +0 -0
  329. casadi/libClpSolver-1.dll +0 -0
  330. casadi/libClpSolver.dll.a +0 -0
  331. casadi/libCoinUtils-3.dll +0 -0
  332. casadi/libCoinUtils.dll.a +0 -0
  333. casadi/libOsi-1.dll +0 -0
  334. casadi/libOsi.dll.a +0 -0
  335. casadi/libOsiCbc-3.dll +0 -0
  336. casadi/libOsiCbc.dll.a +0 -0
  337. casadi/libOsiClp-1.dll +0 -0
  338. casadi/libOsiClp.dll.a +0 -0
  339. casadi/libOsiCommonTests-1.dll +0 -0
  340. casadi/libOsiCommonTests.dll.a +0 -0
  341. casadi/libalpaqa.dll +0 -0
  342. casadi/libalpaqa.dll.a +0 -0
  343. casadi/libblasfeo.dll +0 -0
  344. casadi/libblasfeo.dll.a +0 -0
  345. casadi/libbonmin-4.dll +0 -0
  346. casadi/libbonmin.dll.a +0 -0
  347. casadi/libcasadi-tp-openblas.dll +0 -0
  348. casadi/libcasadi-tp-openblas.dll.a +0 -0
  349. casadi/libcasadi.dll +0 -0
  350. casadi/libcasadi.dll.a +0 -0
  351. casadi/libcasadi_conic_cbc.dll +0 -0
  352. casadi/libcasadi_conic_cbc.dll.a +0 -0
  353. casadi/libcasadi_conic_clp.dll +0 -0
  354. casadi/libcasadi_conic_clp.dll.a +0 -0
  355. casadi/libcasadi_conic_cplex.dll +0 -0
  356. casadi/libcasadi_conic_cplex.dll.a +0 -0
  357. casadi/libcasadi_conic_daqp.dll +0 -0
  358. casadi/libcasadi_conic_daqp.dll.a +0 -0
  359. casadi/libcasadi_conic_fatrop.dll +0 -0
  360. casadi/libcasadi_conic_fatrop.dll.a +0 -0
  361. casadi/libcasadi_conic_gurobi.dll +0 -0
  362. casadi/libcasadi_conic_gurobi.dll.a +0 -0
  363. casadi/libcasadi_conic_highs.dll +0 -0
  364. casadi/libcasadi_conic_highs.dll.a +0 -0
  365. casadi/libcasadi_conic_hpipm.dll +0 -0
  366. casadi/libcasadi_conic_hpipm.dll.a +0 -0
  367. casadi/libcasadi_conic_ipqp.dll +0 -0
  368. casadi/libcasadi_conic_ipqp.dll.a +0 -0
  369. casadi/libcasadi_conic_nlpsol.dll +0 -0
  370. casadi/libcasadi_conic_nlpsol.dll.a +0 -0
  371. casadi/libcasadi_conic_osqp.dll +0 -0
  372. casadi/libcasadi_conic_osqp.dll.a +0 -0
  373. casadi/libcasadi_conic_proxqp.dll +0 -0
  374. casadi/libcasadi_conic_proxqp.dll.a +0 -0
  375. casadi/libcasadi_conic_qpoases.dll +0 -0
  376. casadi/libcasadi_conic_qpoases.dll.a +0 -0
  377. casadi/libcasadi_conic_qrqp.dll +0 -0
  378. casadi/libcasadi_conic_qrqp.dll.a +0 -0
  379. casadi/libcasadi_conic_superscs.dll +0 -0
  380. casadi/libcasadi_conic_superscs.dll.a +0 -0
  381. casadi/libcasadi_importer_shell.dll +0 -0
  382. casadi/libcasadi_importer_shell.dll.a +0 -0
  383. casadi/libcasadi_integrator_collocation.dll +0 -0
  384. casadi/libcasadi_integrator_collocation.dll.a +0 -0
  385. casadi/libcasadi_integrator_cvodes.dll +0 -0
  386. casadi/libcasadi_integrator_cvodes.dll.a +0 -0
  387. casadi/libcasadi_integrator_idas.dll +0 -0
  388. casadi/libcasadi_integrator_idas.dll.a +0 -0
  389. casadi/libcasadi_integrator_rk.dll +0 -0
  390. casadi/libcasadi_integrator_rk.dll.a +0 -0
  391. casadi/libcasadi_interpolant_bspline.dll +0 -0
  392. casadi/libcasadi_interpolant_bspline.dll.a +0 -0
  393. casadi/libcasadi_interpolant_linear.dll +0 -0
  394. casadi/libcasadi_interpolant_linear.dll.a +0 -0
  395. casadi/libcasadi_linsol_csparse.dll +0 -0
  396. casadi/libcasadi_linsol_csparse.dll.a +0 -0
  397. casadi/libcasadi_linsol_csparsecholesky.dll +0 -0
  398. casadi/libcasadi_linsol_csparsecholesky.dll.a +0 -0
  399. casadi/libcasadi_linsol_lapacklu.dll +0 -0
  400. casadi/libcasadi_linsol_lapacklu.dll.a +0 -0
  401. casadi/libcasadi_linsol_lapackqr.dll +0 -0
  402. casadi/libcasadi_linsol_lapackqr.dll.a +0 -0
  403. casadi/libcasadi_linsol_ldl.dll +0 -0
  404. casadi/libcasadi_linsol_ldl.dll.a +0 -0
  405. casadi/libcasadi_linsol_lsqr.dll +0 -0
  406. casadi/libcasadi_linsol_lsqr.dll.a +0 -0
  407. casadi/libcasadi_linsol_ma27.dll +0 -0
  408. casadi/libcasadi_linsol_ma27.dll.a +0 -0
  409. casadi/libcasadi_linsol_mumps.dll +0 -0
  410. casadi/libcasadi_linsol_mumps.dll.a +0 -0
  411. casadi/libcasadi_linsol_qr.dll +0 -0
  412. casadi/libcasadi_linsol_qr.dll.a +0 -0
  413. casadi/libcasadi_linsol_symbolicqr.dll +0 -0
  414. casadi/libcasadi_linsol_symbolicqr.dll.a +0 -0
  415. casadi/libcasadi_linsol_tridiag.dll +0 -0
  416. casadi/libcasadi_linsol_tridiag.dll.a +0 -0
  417. casadi/libcasadi_nlpsol_alpaqa.dll +0 -0
  418. casadi/libcasadi_nlpsol_alpaqa.dll.a +0 -0
  419. casadi/libcasadi_nlpsol_ampl.dll +0 -0
  420. casadi/libcasadi_nlpsol_ampl.dll.a +0 -0
  421. casadi/libcasadi_nlpsol_blocksqp.dll +0 -0
  422. casadi/libcasadi_nlpsol_blocksqp.dll.a +0 -0
  423. casadi/libcasadi_nlpsol_bonmin.dll +0 -0
  424. casadi/libcasadi_nlpsol_bonmin.dll.a +0 -0
  425. casadi/libcasadi_nlpsol_fatrop.dll +0 -0
  426. casadi/libcasadi_nlpsol_fatrop.dll.a +0 -0
  427. casadi/libcasadi_nlpsol_feasiblesqpmethod.dll +0 -0
  428. casadi/libcasadi_nlpsol_feasiblesqpmethod.dll.a +0 -0
  429. casadi/libcasadi_nlpsol_ipopt.dll +0 -0
  430. casadi/libcasadi_nlpsol_ipopt.dll.a +0 -0
  431. casadi/libcasadi_nlpsol_knitro.dll +0 -0
  432. casadi/libcasadi_nlpsol_knitro.dll.a +0 -0
  433. casadi/libcasadi_nlpsol_madnlp.dll +0 -0
  434. casadi/libcasadi_nlpsol_madnlp.dll.a +0 -0
  435. casadi/libcasadi_nlpsol_qrsqp.dll +0 -0
  436. casadi/libcasadi_nlpsol_qrsqp.dll.a +0 -0
  437. casadi/libcasadi_nlpsol_scpgen.dll +0 -0
  438. casadi/libcasadi_nlpsol_scpgen.dll.a +0 -0
  439. casadi/libcasadi_nlpsol_sleqp.dll +0 -0
  440. casadi/libcasadi_nlpsol_sleqp.dll.a +0 -0
  441. casadi/libcasadi_nlpsol_snopt.dll +0 -0
  442. casadi/libcasadi_nlpsol_snopt.dll.a +0 -0
  443. casadi/libcasadi_nlpsol_sqpmethod.dll +0 -0
  444. casadi/libcasadi_nlpsol_sqpmethod.dll.a +0 -0
  445. casadi/libcasadi_nlpsol_worhp.dll +0 -0
  446. casadi/libcasadi_nlpsol_worhp.dll.a +0 -0
  447. casadi/libcasadi_rootfinder_fast_newton.dll +0 -0
  448. casadi/libcasadi_rootfinder_fast_newton.dll.a +0 -0
  449. casadi/libcasadi_rootfinder_kinsol.dll +0 -0
  450. casadi/libcasadi_rootfinder_kinsol.dll.a +0 -0
  451. casadi/libcasadi_rootfinder_newton.dll +0 -0
  452. casadi/libcasadi_rootfinder_newton.dll.a +0 -0
  453. casadi/libcasadi_rootfinder_nlpsol.dll +0 -0
  454. casadi/libcasadi_rootfinder_nlpsol.dll.a +0 -0
  455. casadi/libcasadi_sundials_common.dll +0 -0
  456. casadi/libcasadi_sundials_common.dll.a +0 -0
  457. casadi/libcasadi_xmlfile_tinyxml.dll +0 -0
  458. casadi/libcasadi_xmlfile_tinyxml.dll.a +0 -0
  459. casadi/libcoinmetis-2.dll +0 -0
  460. casadi/libcoinmetis.dll.a +0 -0
  461. casadi/libcoinmetis.la +1 -1
  462. casadi/libcoinmumps-3.dll +0 -0
  463. casadi/libcoinmumps.dll.a +0 -0
  464. casadi/libcplex_adaptor.dll +0 -0
  465. casadi/libdaqp.dll +0 -0
  466. casadi/libdaqp.dll.a +0 -0
  467. casadi/libdaqpstat.a +0 -0
  468. casadi/{libFortranHighs.dll → libdl.dll} +0 -0
  469. casadi/libdl.dll.a +0 -0
  470. casadi/libfatrop.dll +0 -0
  471. casadi/libfatrop.dll.a +0 -0
  472. casadi/libgurobi_adaptor.dll +0 -0
  473. casadi/libhighs.dll +0 -0
  474. casadi/libhighs.dll.a +0 -0
  475. casadi/libhpipm.dll +0 -0
  476. casadi/libhpipm.dll.a +0 -0
  477. casadi/libipopt-3.dll +0 -0
  478. casadi/libipopt.dll.a +0 -0
  479. casadi/libmatlab_ipc.dll +0 -0
  480. casadi/libmatlab_ipc.dll.a +0 -0
  481. casadi/libosqp.a +0 -0
  482. casadi/libosqp.dll +0 -0
  483. casadi/libosqp.dll.a +0 -0
  484. casadi/libqdldl.dll +0 -0
  485. casadi/libqdldl.dll.a +0 -0
  486. casadi/libsipopt-3.dll +0 -0
  487. casadi/libsipopt.dll.a +0 -0
  488. casadi/libsleqp.dll +0 -0
  489. casadi/libsleqp.dll.a +0 -0
  490. casadi/libtinyxml2.dll +0 -0
  491. casadi/libtrlib.dll +0 -0
  492. casadi/libtrlib.dll.a +0 -0
  493. casadi/matlab_ipc.lib +0 -0
  494. casadi/osqp.lib +0 -0
  495. casadi/pkgconfig/casadi.pc +1 -1
  496. casadi/pkgconfig/highs.pc +1 -1
  497. casadi/sleqp.lib +0 -0
  498. casadi/spral_ssids.exe +0 -0
  499. casadi/tools/__init__.py +4 -0
  500. casadi/tools/bounds.py +3 -3
  501. {casadi-3.6.5.dist-info → casadi-3.6.7.dist-info}/METADATA +2 -2
  502. {casadi-3.6.5.dist-info → casadi-3.6.7.dist-info}/RECORD +503 -325
  503. casadi/include/highs/fortran/highs_fortran_api.mod +0 -0
  504. casadi/libFortranHighs.dll.a +0 -0
  505. {casadi-3.6.5.dist-info → casadi-3.6.7.dist-info}/WHEEL +0 -0
casadi/casadi.py CHANGED
@@ -111,6 +111,7 @@ SOLVER_RET_UNKNOWN = _casadi.SOLVER_RET_UNKNOWN
111
111
  SOLVER_RET_LIMITED = _casadi.SOLVER_RET_LIMITED
112
112
  SOLVER_RET_NAN = _casadi.SOLVER_RET_NAN
113
113
  SOLVER_RET_INFEASIBLE = _casadi.SOLVER_RET_INFEASIBLE
114
+ SOLVER_RET_EXCEPTION = _casadi.SOLVER_RET_EXCEPTION
114
115
 
115
116
 
116
117
  import contextlib
@@ -14204,7 +14205,7 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
14204
14205
  https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L241
14205
14206
 
14206
14207
  Implementation:
14207
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L841-L843
14208
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L845-L847
14208
14209
 
14209
14210
 
14210
14211
 
@@ -14229,7 +14230,7 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
14229
14230
  https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L246
14230
14231
 
14231
14232
  Implementation:
14232
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L845-L847
14233
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L849-L851
14233
14234
 
14234
14235
 
14235
14236
 
@@ -14429,6 +14430,31 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
14429
14430
  return _casadi.MX_is_output(self, *args)
14430
14431
 
14431
14432
 
14433
+ def has_output(self, *args) -> "bool":
14434
+ """
14435
+ [INTERNAL]
14436
+
14437
+ ::
14438
+
14439
+ has_output(self) -> bool
14440
+
14441
+ Check if a multiple output node.
14442
+
14443
+ Extra doc: https://github.com/casadi/casadi/wiki/L_284
14444
+
14445
+ Doc source:
14446
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L280
14447
+
14448
+ Implementation:
14449
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L762-L764
14450
+
14451
+
14452
+
14453
+
14454
+ """
14455
+ return _casadi.MX_has_output(self, *args)
14456
+
14457
+
14432
14458
  def which_output(self, *args) -> "casadi_int":
14433
14459
  """
14434
14460
  [INTERNAL]
@@ -14441,10 +14467,10 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
14441
14467
  is_output() is true.
14442
14468
 
14443
14469
  Doc source:
14444
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L278
14470
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L283
14445
14471
 
14446
14472
  Implementation:
14447
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L762-L764
14473
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L766-L768
14448
14474
 
14449
14475
 
14450
14476
 
@@ -14464,10 +14490,10 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
14464
14490
  Is it a certain operation.
14465
14491
 
14466
14492
  Doc source:
14467
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L281
14493
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L286
14468
14494
 
14469
14495
  Implementation:
14470
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L766-L768
14496
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L770-L772
14471
14497
 
14472
14498
 
14473
14499
 
@@ -14487,10 +14513,10 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
14487
14513
  Check if multiplication.
14488
14514
 
14489
14515
  Doc source:
14490
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L284
14516
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L289
14491
14517
 
14492
14518
  Implementation:
14493
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L770-L772
14519
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L774-L776
14494
14520
 
14495
14521
 
14496
14522
 
@@ -14510,10 +14536,10 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
14510
14536
  Check if commutative operation.
14511
14537
 
14512
14538
  Doc source:
14513
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L287
14539
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L292
14514
14540
 
14515
14541
  Implementation:
14516
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L822-L827
14542
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L826-L831
14517
14543
 
14518
14544
 
14519
14545
 
@@ -14533,10 +14559,10 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
14533
14559
  Check if norm.
14534
14560
 
14535
14561
  Doc source:
14536
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L290
14562
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L295
14537
14563
 
14538
14564
  Implementation:
14539
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L774-L776
14565
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L778-L780
14540
14566
 
14541
14567
 
14542
14568
 
@@ -14562,10 +14588,10 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
14562
14588
  Extra doc: https://github.com/casadi/casadi/wiki/L_qn
14563
14589
 
14564
14590
  Doc source:
14565
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L297
14591
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L302
14566
14592
 
14567
14593
  Implementation:
14568
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L897-L899
14594
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L901-L903
14569
14595
 
14570
14596
 
14571
14597
 
@@ -14587,10 +14613,10 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
14587
14613
  Extra doc: https://github.com/casadi/casadi/wiki/L_qo
14588
14614
 
14589
14615
  Doc source:
14590
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L302
14616
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L307
14591
14617
 
14592
14618
  Implementation:
14593
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L901-L903
14619
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L905-L907
14594
14620
 
14595
14621
 
14596
14622
 
@@ -14612,10 +14638,10 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
14612
14638
  Extra doc: https://github.com/casadi/casadi/wiki/L_qp
14613
14639
 
14614
14640
  Doc source:
14615
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L307
14641
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L312
14616
14642
 
14617
14643
  Implementation:
14618
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L905-L911
14644
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L909-L915
14619
14645
 
14620
14646
 
14621
14647
 
@@ -14624,12 +14650,14 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
14624
14650
  return _casadi.MX_primitives(self, *args)
14625
14651
 
14626
14652
 
14627
- def split_primitives(self, *args) -> "std::vector< casadi::MX,std::allocator< casadi::MX > >":
14653
+ def split_primitives(self, *args) -> "std::vector< casadi::DM,std::allocator< casadi::DM > >":
14628
14654
  """
14629
14655
  [INTERNAL]
14630
14656
 
14631
14657
  ::
14632
14658
 
14659
+ split_primitives(self, DM x) -> [DM]
14660
+ split_primitives(self, SX x) -> [SX]
14633
14661
  split_primitives(self, MX x) -> [MX]
14634
14662
 
14635
14663
  Split up an expression along symbolic primitives.
@@ -14637,11 +14665,83 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
14637
14665
  Extra doc: https://github.com/casadi/casadi/wiki/L_qq
14638
14666
 
14639
14667
  Doc source:
14640
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L312
14668
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L320
14641
14669
 
14642
14670
  Implementation:
14643
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L913-L919
14671
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L933-L939
14672
+
14673
+
14674
+
14675
+ .......
14676
+
14677
+ ::
14678
+
14679
+ split_primitives(self, DM x)
14680
+
14681
+
14682
+
14683
+ [INTERNAL]
14684
+ Split up an expression along symbolic primitives.
14644
14685
 
14686
+ Extra doc: https://github.com/casadi/casadi/wiki/L_qq
14687
+
14688
+ Doc source:
14689
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L320
14690
+
14691
+ Implementation:
14692
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L933-L939
14693
+
14694
+
14695
+
14696
+ .............
14697
+
14698
+
14699
+ .......
14700
+
14701
+ ::
14702
+
14703
+ split_primitives(self, SX x)
14704
+
14705
+
14706
+
14707
+ [INTERNAL]
14708
+ Split up an expression along symbolic primitives.
14709
+
14710
+ Extra doc: https://github.com/casadi/casadi/wiki/L_qq
14711
+
14712
+ Doc source:
14713
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L319
14714
+
14715
+ Implementation:
14716
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L925-L931
14717
+
14718
+
14719
+
14720
+ .............
14721
+
14722
+
14723
+ .......
14724
+
14725
+ ::
14726
+
14727
+ split_primitives(self, MX x)
14728
+
14729
+
14730
+
14731
+ [INTERNAL]
14732
+ Split up an expression along symbolic primitives.
14733
+
14734
+ Extra doc: https://github.com/casadi/casadi/wiki/L_qq
14735
+
14736
+ Doc source:
14737
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L318
14738
+
14739
+ Implementation:
14740
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L917-L923
14741
+
14742
+
14743
+
14744
+ .............
14645
14745
 
14646
14746
 
14647
14747
 
@@ -14649,12 +14749,14 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
14649
14749
  return _casadi.MX_split_primitives(self, *args)
14650
14750
 
14651
14751
 
14652
- def join_primitives(self, *args) -> "casadi::MX":
14752
+ def join_primitives(self, *args) -> "casadi::DM":
14653
14753
  """
14654
14754
  [INTERNAL]
14655
14755
 
14656
14756
  ::
14657
14757
 
14758
+ join_primitives(self, [DM] v) -> DM
14759
+ join_primitives(self, [SX] v) -> SX
14658
14760
  join_primitives(self, [MX] v) -> MX
14659
14761
 
14660
14762
  Join an expression along symbolic primitives.
@@ -14662,13 +14764,85 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
14662
14764
  Extra doc: https://github.com/casadi/casadi/wiki/L_qr
14663
14765
 
14664
14766
  Doc source:
14665
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L317
14767
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L329
14768
+
14769
+ Implementation:
14770
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L957-L963
14771
+
14772
+
14773
+
14774
+ .......
14775
+
14776
+ ::
14777
+
14778
+ join_primitives(self, [DM] v)
14779
+
14780
+
14781
+
14782
+ [INTERNAL]
14783
+ Join an expression along symbolic primitives.
14784
+
14785
+ Extra doc: https://github.com/casadi/casadi/wiki/L_qr
14786
+
14787
+ Doc source:
14788
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L329
14789
+
14790
+ Implementation:
14791
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L957-L963
14792
+
14793
+
14794
+
14795
+ .............
14796
+
14797
+
14798
+ .......
14799
+
14800
+ ::
14801
+
14802
+ join_primitives(self, [SX] v)
14803
+
14804
+
14805
+
14806
+ [INTERNAL]
14807
+ Join an expression along symbolic primitives.
14808
+
14809
+ Extra doc: https://github.com/casadi/casadi/wiki/L_qr
14810
+
14811
+ Doc source:
14812
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L328
14813
+
14814
+ Implementation:
14815
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L949-L955
14816
+
14817
+
14818
+
14819
+ .............
14820
+
14821
+
14822
+ .......
14823
+
14824
+ ::
14825
+
14826
+ join_primitives(self, [MX] v)
14827
+
14828
+
14829
+
14830
+ [INTERNAL]
14831
+ Join an expression along symbolic primitives.
14832
+
14833
+ Extra doc: https://github.com/casadi/casadi/wiki/L_qr
14834
+
14835
+ Doc source:
14836
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L327
14666
14837
 
14667
14838
  Implementation:
14668
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L921-L927
14839
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L941-L947
14669
14840
 
14670
14841
 
14671
14842
 
14843
+ .............
14844
+
14845
+
14672
14846
 
14673
14847
  """
14674
14848
  return _casadi.MX_join_primitives(self, *args)
@@ -14715,10 +14889,10 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
14715
14889
  Extra doc: https://github.com/casadi/casadi/wiki/L_qu
14716
14890
 
14717
14891
  Doc source:
14718
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L339
14892
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L352
14719
14893
 
14720
14894
  Implementation:
14721
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L937-L939
14895
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L973-L975
14722
14896
 
14723
14897
 
14724
14898
 
@@ -14740,10 +14914,10 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
14740
14914
  Extra doc: https://github.com/casadi/casadi/wiki/L_qv
14741
14915
 
14742
14916
  Doc source:
14743
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L344
14917
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L357
14744
14918
 
14745
14919
  Implementation:
14746
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L941-L947
14920
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L977-L983
14747
14921
 
14748
14922
 
14749
14923
 
@@ -14765,10 +14939,10 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
14765
14939
  Extra doc: https://github.com/casadi/casadi/wiki/L_qw
14766
14940
 
14767
14941
  Doc source:
14768
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L349
14942
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L362
14769
14943
 
14770
14944
  Implementation:
14771
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L949-L951
14945
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L985-L987
14772
14946
 
14773
14947
 
14774
14948
 
@@ -14790,10 +14964,10 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
14790
14964
  Extra doc: https://github.com/casadi/casadi/wiki/L_qx
14791
14965
 
14792
14966
  Doc source:
14793
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L354
14967
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L367
14794
14968
 
14795
14969
  Implementation:
14796
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L953-L955
14970
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L989-L991
14797
14971
 
14798
14972
 
14799
14973
 
@@ -14815,10 +14989,10 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
14815
14989
  Extra doc: https://github.com/casadi/casadi/wiki/L_qy
14816
14990
 
14817
14991
  Doc source:
14818
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L359
14992
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L372
14819
14993
 
14820
14994
  Implementation:
14821
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L957-L959
14995
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L993-L995
14822
14996
 
14823
14997
 
14824
14998
 
@@ -14838,10 +15012,10 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
14838
15012
  Checks if expression does not contain NaN or Inf.
14839
15013
 
14840
15014
  Doc source:
14841
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L362
15015
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L375
14842
15016
 
14843
15017
  Implementation:
14844
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L961-L967
15018
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L997-L1003
14845
15019
 
14846
15020
 
14847
15021
 
@@ -14861,10 +15035,10 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
14861
15035
  Is binary operation.
14862
15036
 
14863
15037
  Doc source:
14864
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L365
15038
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L378
14865
15039
 
14866
15040
  Implementation:
14867
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L786-L788
15041
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L790-L792
14868
15042
 
14869
15043
 
14870
15044
 
@@ -14884,10 +15058,10 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
14884
15058
  Is unary operation.
14885
15059
 
14886
15060
  Doc source:
14887
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L368
15061
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L381
14888
15062
 
14889
15063
  Implementation:
14890
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L790-L792
15064
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L794-L796
14891
15065
 
14892
15066
 
14893
15067
 
@@ -14907,10 +15081,10 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
14907
15081
  Get operation type.
14908
15082
 
14909
15083
  Doc source:
14910
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L371
15084
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L384
14911
15085
 
14912
15086
  Implementation:
14913
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L794-L796
15087
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L798-L800
14914
15088
 
14915
15089
 
14916
15090
 
@@ -14930,10 +15104,10 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
14930
15104
  Obtain information about node
14931
15105
 
14932
15106
  Doc source:
14933
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L374
15107
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L387
14934
15108
 
14935
15109
  Implementation:
14936
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L798-L800
15110
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L802-L804
14937
15111
 
14938
15112
 
14939
15113
 
@@ -14955,10 +15129,10 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
14955
15129
  Extra doc: https://github.com/casadi/casadi/wiki/L_qz
14956
15130
 
14957
15131
  Doc source:
14958
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L379
15132
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L392
14959
15133
 
14960
15134
  Implementation:
14961
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L802-L804
15135
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L806-L808
14962
15136
 
14963
15137
 
14964
15138
 
@@ -15023,7 +15197,7 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
15023
15197
  Extra doc: https://github.com/casadi/casadi/wiki/L_r1
15024
15198
 
15025
15199
  Doc source:
15026
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L398
15200
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L411
15027
15201
 
15028
15202
  Implementation:
15029
15203
  https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L507-L532
@@ -15049,7 +15223,7 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
15049
15223
  Extra doc: https://github.com/casadi/casadi/wiki/L_r1
15050
15224
 
15051
15225
  Doc source:
15052
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L399
15226
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L412
15053
15227
 
15054
15228
  Implementation:
15055
15229
  https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L534-L536
@@ -15077,7 +15251,7 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
15077
15251
  Extra doc: https://github.com/casadi/casadi/wiki/L_r2
15078
15252
 
15079
15253
  Doc source:
15080
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L408
15254
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L421
15081
15255
 
15082
15256
  Implementation:
15083
15257
  https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L554-L556
@@ -15098,7 +15272,7 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
15098
15272
  Extra doc: https://github.com/casadi/casadi/wiki/L_r2
15099
15273
 
15100
15274
  Doc source:
15101
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L407
15275
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L420
15102
15276
 
15103
15277
  Implementation:
15104
15278
  https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L550-L552
@@ -15122,7 +15296,7 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
15122
15296
  Extra doc: https://github.com/casadi/casadi/wiki/L_r2
15123
15297
 
15124
15298
  Doc source:
15125
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L408
15299
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L421
15126
15300
 
15127
15301
  Implementation:
15128
15302
  https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L554-L556
@@ -15146,7 +15320,7 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
15146
15320
  Extra doc: https://github.com/casadi/casadi/wiki/L_r2
15147
15321
 
15148
15322
  Doc source:
15149
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L406
15323
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L419
15150
15324
 
15151
15325
  Implementation:
15152
15326
  https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L558-L560
@@ -15177,7 +15351,7 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
15177
15351
  Extra doc: https://github.com/casadi/casadi/wiki/L_r3
15178
15352
 
15179
15353
  Doc source:
15180
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L417
15354
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L430
15181
15355
 
15182
15356
  Implementation:
15183
15357
  https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L566-L568
@@ -15198,7 +15372,7 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
15198
15372
  Extra doc: https://github.com/casadi/casadi/wiki/L_r3
15199
15373
 
15200
15374
  Doc source:
15201
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L416
15375
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L429
15202
15376
 
15203
15377
  Implementation:
15204
15378
  https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L562-L564
@@ -15222,7 +15396,7 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
15222
15396
  Extra doc: https://github.com/casadi/casadi/wiki/L_r3
15223
15397
 
15224
15398
  Doc source:
15225
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L417
15399
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L430
15226
15400
 
15227
15401
  Implementation:
15228
15402
  https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L566-L568
@@ -15246,7 +15420,7 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
15246
15420
  Extra doc: https://github.com/casadi/casadi/wiki/L_r3
15247
15421
 
15248
15422
  Doc source:
15249
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L415
15423
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L428
15250
15424
 
15251
15425
  Implementation:
15252
15426
  https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L570-L572
@@ -15302,7 +15476,7 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
15302
15476
  Get a submatrix, two arguments
15303
15477
 
15304
15478
  Doc source:
15305
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L460
15479
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L473
15306
15480
 
15307
15481
  Implementation:
15308
15482
  https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L218-L221
@@ -15335,10 +15509,10 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
15335
15509
  Get a submatrix, single argument
15336
15510
 
15337
15511
  Doc source:
15338
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L436
15512
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L449
15339
15513
 
15340
15514
  Implementation:
15341
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L436-L438
15515
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L449-L451
15342
15516
 
15343
15517
 
15344
15518
 
@@ -15357,7 +15531,7 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
15357
15531
  Get a submatrix, single argument
15358
15532
 
15359
15533
  Doc source:
15360
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L434
15534
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L447
15361
15535
 
15362
15536
  Implementation:
15363
15537
  https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L194-L200
@@ -15379,7 +15553,7 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
15379
15553
  Get a submatrix, single argument
15380
15554
 
15381
15555
  Doc source:
15382
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L432
15556
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L445
15383
15557
 
15384
15558
  Implementation:
15385
15559
  https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L171-L174
@@ -15401,7 +15575,7 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
15401
15575
  Get a submatrix, single argument
15402
15576
 
15403
15577
  Doc source:
15404
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L435
15578
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L448
15405
15579
 
15406
15580
  Implementation:
15407
15581
  https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L202-L206
@@ -15423,10 +15597,10 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
15423
15597
  Get a submatrix, two arguments
15424
15598
 
15425
15599
  Doc source:
15426
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L454
15600
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L467
15427
15601
 
15428
15602
  Implementation:
15429
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L454-L457
15603
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L467-L470
15430
15604
 
15431
15605
 
15432
15606
 
@@ -15445,10 +15619,10 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
15445
15619
  Get a submatrix, two arguments
15446
15620
 
15447
15621
  Doc source:
15448
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L449
15622
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L462
15449
15623
 
15450
15624
  Implementation:
15451
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L449-L451
15625
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L462-L464
15452
15626
 
15453
15627
 
15454
15628
 
@@ -15467,10 +15641,10 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
15467
15641
  Get a submatrix, two arguments
15468
15642
 
15469
15643
  Doc source:
15470
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L445
15644
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L458
15471
15645
 
15472
15646
  Implementation:
15473
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L445-L447
15647
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L458-L460
15474
15648
 
15475
15649
 
15476
15650
 
@@ -15489,7 +15663,7 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
15489
15663
  Get a submatrix, two arguments
15490
15664
 
15491
15665
  Doc source:
15492
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L443
15666
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L456
15493
15667
 
15494
15668
  Implementation:
15495
15669
  https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L141-L144
@@ -15511,7 +15685,7 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
15511
15685
  Get a submatrix, two arguments
15512
15686
 
15513
15687
  Doc source:
15514
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L459
15688
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L472
15515
15689
 
15516
15690
  Implementation:
15517
15691
  https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L208-L211
@@ -15533,7 +15707,7 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
15533
15707
  Get a submatrix, two arguments
15534
15708
 
15535
15709
  Doc source:
15536
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L458
15710
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L471
15537
15711
 
15538
15712
  Implementation:
15539
15713
  https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L213-L216
@@ -15555,7 +15729,7 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
15555
15729
  Get a submatrix, two arguments
15556
15730
 
15557
15731
  Doc source:
15558
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L460
15732
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L473
15559
15733
 
15560
15734
  Implementation:
15561
15735
  https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L218-L221
@@ -15611,7 +15785,7 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
15611
15785
  Set a submatrix, single argument
15612
15786
 
15613
15787
  Doc source:
15614
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L467
15788
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L480
15615
15789
 
15616
15790
  Implementation:
15617
15791
  https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L371-L382
@@ -15633,7 +15807,7 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
15633
15807
  Set a submatrix, single argument
15634
15808
 
15635
15809
  Doc source:
15636
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L465
15810
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L478
15637
15811
 
15638
15812
  Implementation:
15639
15813
  https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L298-L301
@@ -15655,7 +15829,7 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
15655
15829
  Set a submatrix, two arguments
15656
15830
 
15657
15831
  Doc source:
15658
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L472
15832
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L485
15659
15833
 
15660
15834
  Implementation:
15661
15835
  https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L223-L226
@@ -15687,7 +15861,7 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
15687
15861
  Get a set of nonzeros
15688
15862
 
15689
15863
  Doc source:
15690
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L488
15864
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L501
15691
15865
 
15692
15866
  Implementation:
15693
15867
  https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L427-L430
@@ -15717,10 +15891,10 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
15717
15891
  Get a set of nonzeros
15718
15892
 
15719
15893
  Doc source:
15720
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L483
15894
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L496
15721
15895
 
15722
15896
  Implementation:
15723
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L483-L485
15897
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L496-L498
15724
15898
 
15725
15899
 
15726
15900
 
@@ -15739,7 +15913,7 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
15739
15913
  Get a set of nonzeros
15740
15914
 
15741
15915
  Doc source:
15742
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L480
15916
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L493
15743
15917
 
15744
15918
  Implementation:
15745
15919
  https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L384-L387
@@ -15761,7 +15935,7 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
15761
15935
  Get a set of nonzeros
15762
15936
 
15763
15937
  Doc source:
15764
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L482
15938
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L495
15765
15939
 
15766
15940
  Implementation:
15767
15941
  https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L422-L425
@@ -15783,7 +15957,7 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
15783
15957
  Get a set of nonzeros
15784
15958
 
15785
15959
  Doc source:
15786
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L487
15960
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L500
15787
15961
 
15788
15962
  Implementation:
15789
15963
  https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L432-L435
@@ -15805,7 +15979,7 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
15805
15979
  Get a set of nonzeros
15806
15980
 
15807
15981
  Doc source:
15808
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L486
15982
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L499
15809
15983
 
15810
15984
  Implementation:
15811
15985
  https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L437-L440
@@ -15827,7 +16001,7 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
15827
16001
  Get a set of nonzeros
15828
16002
 
15829
16003
  Doc source:
15830
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L488
16004
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L501
15831
16005
 
15832
16006
  Implementation:
15833
16007
  https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L427-L430
@@ -15856,10 +16030,10 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
15856
16030
  Set a set of nonzeros
15857
16031
 
15858
16032
  Doc source:
15859
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L496
16033
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L509
15860
16034
 
15861
16035
  Implementation:
15862
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L496-L496
16036
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L509-L509
15863
16037
 
15864
16038
 
15865
16039
 
@@ -15886,10 +16060,10 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
15886
16060
  Set a set of nonzeros
15887
16061
 
15888
16062
  Doc source:
15889
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L496
16063
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L509
15890
16064
 
15891
16065
  Implementation:
15892
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L496-L496
16066
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L509-L509
15893
16067
 
15894
16068
 
15895
16069
 
@@ -15908,7 +16082,7 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
15908
16082
  Set a set of nonzeros
15909
16083
 
15910
16084
  Doc source:
15911
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L493
16085
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L506
15912
16086
 
15913
16087
  Implementation:
15914
16088
  https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L442-L445
@@ -15930,7 +16104,7 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
15930
16104
  Set a set of nonzeros
15931
16105
 
15932
16106
  Doc source:
15933
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L495
16107
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L508
15934
16108
 
15935
16109
  Implementation:
15936
16110
  https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L503-L505
@@ -15970,7 +16144,7 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
15970
16144
  Extra doc: https://github.com/casadi/casadi/wiki/L_r5
15971
16145
 
15972
16146
  Doc source:
15973
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L520
16147
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L533
15974
16148
 
15975
16149
  Implementation:
15976
16150
  https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L646-L652
@@ -16002,7 +16176,7 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
16002
16176
  Extra doc: https://github.com/casadi/casadi/wiki/L_r5
16003
16177
 
16004
16178
  Doc source:
16005
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L520
16179
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L533
16006
16180
 
16007
16181
  Implementation:
16008
16182
  https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L646-L652
@@ -16037,7 +16211,7 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
16037
16211
  Extra doc: https://github.com/casadi/casadi/wiki/L_r5
16038
16212
 
16039
16213
  Doc source:
16040
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L514
16214
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L527
16041
16215
 
16042
16216
  Implementation:
16043
16217
  https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L638-L644
@@ -16112,7 +16286,7 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
16112
16286
  Extra doc: https://github.com/casadi/casadi/wiki/L_rg
16113
16287
 
16114
16288
  Doc source:
16115
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L851
16289
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L866
16116
16290
 
16117
16291
  Implementation:
16118
16292
  https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L699-L704
@@ -16141,7 +16315,7 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
16141
16315
  Extra doc: https://github.com/casadi/casadi/wiki/L_rh
16142
16316
 
16143
16317
  Doc source:
16144
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L858
16318
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L873
16145
16319
 
16146
16320
  Implementation:
16147
16321
  https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L706-L708
@@ -16166,10 +16340,10 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
16166
16340
  Extra doc: https://github.com/casadi/casadi/wiki/L_ri
16167
16341
 
16168
16342
  Doc source:
16169
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L866
16343
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L881
16170
16344
 
16171
16345
  Implementation:
16172
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L829-L831
16346
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L833-L835
16173
16347
 
16174
16348
 
16175
16349
 
@@ -16266,10 +16440,10 @@ class MX(GenericExpressionCommon, PrintableCommon, GenMX, SharedObject):
16266
16440
  Extra doc: https://github.com/casadi/casadi/wiki/L_rn
16267
16441
 
16268
16442
  Doc source:
16269
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L897
16443
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L912
16270
16444
 
16271
16445
  Implementation:
16272
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L2288-L2294
16446
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L2347-L2353
16273
16447
 
16274
16448
 
16275
16449
 
@@ -16624,7 +16798,7 @@ def MX_binary(*args) -> "casadi::MX":
16624
16798
  Extra doc: https://github.com/casadi/casadi/wiki/L_r1
16625
16799
 
16626
16800
  Doc source:
16627
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L398
16801
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L411
16628
16802
 
16629
16803
  Implementation:
16630
16804
  https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L507-L532
@@ -16648,7 +16822,7 @@ def MX_unary(*args) -> "casadi::MX":
16648
16822
  Extra doc: https://github.com/casadi/casadi/wiki/L_r1
16649
16823
 
16650
16824
  Doc source:
16651
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L399
16825
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L412
16652
16826
 
16653
16827
  Implementation:
16654
16828
  https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L534-L536
@@ -16674,7 +16848,7 @@ def MX_inf(*args) -> "casadi::MX":
16674
16848
  Extra doc: https://github.com/casadi/casadi/wiki/L_r2
16675
16849
 
16676
16850
  Doc source:
16677
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L408
16851
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L421
16678
16852
 
16679
16853
  Implementation:
16680
16854
  https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L554-L556
@@ -16695,7 +16869,7 @@ def MX_inf(*args) -> "casadi::MX":
16695
16869
  Extra doc: https://github.com/casadi/casadi/wiki/L_r2
16696
16870
 
16697
16871
  Doc source:
16698
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L407
16872
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L420
16699
16873
 
16700
16874
  Implementation:
16701
16875
  https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L550-L552
@@ -16719,7 +16893,7 @@ def MX_inf(*args) -> "casadi::MX":
16719
16893
  Extra doc: https://github.com/casadi/casadi/wiki/L_r2
16720
16894
 
16721
16895
  Doc source:
16722
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L408
16896
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L421
16723
16897
 
16724
16898
  Implementation:
16725
16899
  https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L554-L556
@@ -16743,7 +16917,7 @@ def MX_inf(*args) -> "casadi::MX":
16743
16917
  Extra doc: https://github.com/casadi/casadi/wiki/L_r2
16744
16918
 
16745
16919
  Doc source:
16746
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L406
16920
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L419
16747
16921
 
16748
16922
  Implementation:
16749
16923
  https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L558-L560
@@ -16772,7 +16946,7 @@ def MX_nan(*args) -> "casadi::MX":
16772
16946
  Extra doc: https://github.com/casadi/casadi/wiki/L_r3
16773
16947
 
16774
16948
  Doc source:
16775
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L417
16949
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L430
16776
16950
 
16777
16951
  Implementation:
16778
16952
  https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L566-L568
@@ -16793,7 +16967,7 @@ def MX_nan(*args) -> "casadi::MX":
16793
16967
  Extra doc: https://github.com/casadi/casadi/wiki/L_r3
16794
16968
 
16795
16969
  Doc source:
16796
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L416
16970
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L429
16797
16971
 
16798
16972
  Implementation:
16799
16973
  https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L562-L564
@@ -16817,7 +16991,7 @@ def MX_nan(*args) -> "casadi::MX":
16817
16991
  Extra doc: https://github.com/casadi/casadi/wiki/L_r3
16818
16992
 
16819
16993
  Doc source:
16820
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L417
16994
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L430
16821
16995
 
16822
16996
  Implementation:
16823
16997
  https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L566-L568
@@ -16841,7 +17015,7 @@ def MX_nan(*args) -> "casadi::MX":
16841
17015
  Extra doc: https://github.com/casadi/casadi/wiki/L_r3
16842
17016
 
16843
17017
  Doc source:
16844
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L415
17018
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L428
16845
17019
 
16846
17020
  Implementation:
16847
17021
  https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L570-L572
@@ -16893,7 +17067,7 @@ def MX_einstein(*args) -> "casadi::MX":
16893
17067
  Extra doc: https://github.com/casadi/casadi/wiki/L_r5
16894
17068
 
16895
17069
  Doc source:
16896
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L520
17070
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L533
16897
17071
 
16898
17072
  Implementation:
16899
17073
  https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L646-L652
@@ -16925,7 +17099,7 @@ def MX_einstein(*args) -> "casadi::MX":
16925
17099
  Extra doc: https://github.com/casadi/casadi/wiki/L_r5
16926
17100
 
16927
17101
  Doc source:
16928
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L520
17102
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L533
16929
17103
 
16930
17104
  Implementation:
16931
17105
  https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L646-L652
@@ -16960,7 +17134,7 @@ def MX_einstein(*args) -> "casadi::MX":
16960
17134
  Extra doc: https://github.com/casadi/casadi/wiki/L_r5
16961
17135
 
16962
17136
  Doc source:
16963
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L514
17137
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L527
16964
17138
 
16965
17139
  Implementation:
16966
17140
  https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L638-L644
@@ -24117,7 +24291,7 @@ def external(*args) -> "casadi::Function":
24117
24291
  https://github.com/casadi/casadi/blob/develop/casadi/core/external.hpp#L42
24118
24292
 
24119
24293
  Implementation:
24120
- https://github.com/casadi/casadi/blob/develop/casadi/core/external.cpp#L42-L45
24294
+ https://github.com/casadi/casadi/blob/develop/casadi/core/external.cpp#L42-L48
24121
24295
 
24122
24296
 
24123
24297
 
@@ -24147,10 +24321,10 @@ def external(*args) -> "casadi::Function":
24147
24321
  Extra doc: https://github.com/casadi/casadi/wiki/L_i0
24148
24322
 
24149
24323
  Doc source:
24150
- https://github.com/casadi/casadi/blob/develop/casadi/core/external.hpp#L47
24324
+ https://github.com/casadi/casadi/blob/develop/casadi/core/external.hpp#L50
24151
24325
 
24152
24326
  Implementation:
24153
- https://github.com/casadi/casadi/blob/develop/casadi/core/external.cpp#L47-L49
24327
+ https://github.com/casadi/casadi/blob/develop/casadi/core/external.cpp#L50-L52
24154
24328
 
24155
24329
 
24156
24330
 
@@ -24184,10 +24358,10 @@ def external(*args) -> "casadi::Function":
24184
24358
  Extra doc: https://github.com/casadi/casadi/wiki/L_i1
24185
24359
 
24186
24360
  Doc source:
24187
- https://github.com/casadi/casadi/blob/develop/casadi/core/external.hpp#L51
24361
+ https://github.com/casadi/casadi/blob/develop/casadi/core/external.hpp#L54
24188
24362
 
24189
24363
  Implementation:
24190
- https://github.com/casadi/casadi/blob/develop/casadi/core/external.cpp#L51-L54
24364
+ https://github.com/casadi/casadi/blob/develop/casadi/core/external.cpp#L54-L57
24191
24365
 
24192
24366
 
24193
24367
 
@@ -24213,7 +24387,7 @@ def external(*args) -> "casadi::Function":
24213
24387
  https://github.com/casadi/casadi/blob/develop/casadi/core/external.hpp#L42
24214
24388
 
24215
24389
  Implementation:
24216
- https://github.com/casadi/casadi/blob/develop/casadi/core/external.cpp#L42-L45
24390
+ https://github.com/casadi/casadi/blob/develop/casadi/core/external.cpp#L42-L48
24217
24391
 
24218
24392
 
24219
24393
 
@@ -25896,6 +26070,25 @@ def conic(*args) -> "casadi::Function":
25896
26070
  | | | available. | |
25897
26071
  | | | [default: true] | |
25898
26072
  +------------------+-----------------+------------------+------------------+
26073
+ | equality | OT_BOOLVECTOR | Indicate an | casadi::Conic |
26074
+ | | | upfront hint | |
26075
+ | | | which of the | |
26076
+ | | | constraints are | |
26077
+ | | | equalities. Some | |
26078
+ | | | solvers may be | |
26079
+ | | | able to exploit | |
26080
+ | | | this knowledge. | |
26081
+ | | | When true, the | |
26082
+ | | | corresponding | |
26083
+ | | | lower and upper | |
26084
+ | | | bounds are | |
26085
+ | | | assumed equal. | |
26086
+ | | | When false, the | |
26087
+ | | | corresponding | |
26088
+ | | | bounds may be | |
26089
+ | | | equal or | |
26090
+ | | | different. | |
26091
+ +------------------+-----------------+------------------+------------------+
25899
26092
  | error_on_fail | OT_BOOL | Throw exceptions | casadi::ProtoFun |
25900
26093
  | | | when function | ction |
25901
26094
  | | | evaluation fails | |
@@ -26173,6 +26366,8 @@ def conic(*args) -> "casadi::Function":
26173
26366
 
26174
26367
  - cplex
26175
26368
 
26369
+ - daqp
26370
+
26176
26371
  - fatrop
26177
26372
 
26178
26373
  - gurobi
@@ -26333,6 +26528,30 @@ def conic(*args) -> "casadi::Function":
26333
26528
 
26334
26529
 
26335
26530
 
26531
+ --------------------------------------------------------------------------------
26532
+
26533
+ daqp
26534
+ ----
26535
+
26536
+
26537
+
26538
+ Interface to Daqp solver for sparse Quadratic Programs, see daqp.dev
26539
+ for
26540
+ more information and https://www.maths.ed.ac.uk/hall/Daqp/DaqpOptions.html
26541
+ for a list of options.
26542
+
26543
+ Extra doc: https://github.com/casadi/casadi/wiki/L_27p
26544
+
26545
+ >List of available options
26546
+
26547
+ +------+---------+-------------------------------+
26548
+ | Id | Type | Description |
26549
+ +======+=========+===============================+
26550
+ | daqp | OT_DICT | Options to be passed to Daqp. |
26551
+ +------+---------+-------------------------------+
26552
+
26553
+
26554
+
26336
26555
  --------------------------------------------------------------------------------
26337
26556
 
26338
26557
  fatrop
@@ -26372,19 +26591,22 @@ def conic(*args) -> "casadi::Function":
26372
26591
 
26373
26592
  >List of available options
26374
26593
 
26375
- +--------+--------------+-----------------------------------------------+
26376
- | Id | Type | Description |
26377
- +========+==============+===============================================+
26378
- | N | OT_INT | OCP horizon |
26379
- +--------+--------------+-----------------------------------------------+
26380
- | fatrop | OT_DICT | Options to be passed to fatrop |
26381
- +--------+--------------+-----------------------------------------------+
26382
- | ng | OT_INTVECTOR | Number of non-dynamic constraints, length N+1 |
26383
- +--------+--------------+-----------------------------------------------+
26384
- | nu | OT_INTVECTOR | Number of controls, length N |
26385
- +--------+--------------+-----------------------------------------------+
26386
- | nx | OT_INTVECTOR | Number of states, length N+1 |
26387
- +--------+--------------+-----------------------------------------------+
26594
+ +---------------------+--------------+-------------------------------------+
26595
+ | Id | Type | Description |
26596
+ +=====================+==============+=====================================+
26597
+ | N | OT_INT | OCP horizon |
26598
+ +---------------------+--------------+-------------------------------------+
26599
+ | fatrop | OT_DICT | Options to be passed to fatrop |
26600
+ +---------------------+--------------+-------------------------------------+
26601
+ | ng | OT_INTVECTOR | Number of non-dynamic constraints, |
26602
+ | | | length N+1 |
26603
+ +---------------------+--------------+-------------------------------------+
26604
+ | nu | OT_INTVECTOR | Number of controls, length N |
26605
+ +---------------------+--------------+-------------------------------------+
26606
+ | nx | OT_INTVECTOR | Number of states, length N+1 |
26607
+ +---------------------+--------------+-------------------------------------+
26608
+ | structure_detection | OT_STRING | NONE | auto | manual |
26609
+ +---------------------+--------------+-------------------------------------+
26388
26610
 
26389
26611
 
26390
26612
 
@@ -27197,10 +27419,10 @@ def conic_options(*args) -> "std::vector< std::string,std::allocator< std::strin
27197
27419
  Extra doc: https://github.com/casadi/casadi/wiki/L_1ek
27198
27420
 
27199
27421
  Doc source:
27200
- https://github.com/casadi/casadi/blob/develop/casadi/core/conic.hpp#L542
27422
+ https://github.com/casadi/casadi/blob/develop/casadi/core/conic.hpp#L556
27201
27423
 
27202
27424
  Implementation:
27203
- https://github.com/casadi/casadi/blob/develop/casadi/core/conic.cpp#L542-L544
27425
+ https://github.com/casadi/casadi/blob/develop/casadi/core/conic.cpp#L556-L558
27204
27426
 
27205
27427
 
27206
27428
 
@@ -27221,10 +27443,10 @@ def conic_option_type(*args) -> "std::string":
27221
27443
  Extra doc: https://github.com/casadi/casadi/wiki/L_1el
27222
27444
 
27223
27445
  Doc source:
27224
- https://github.com/casadi/casadi/blob/develop/casadi/core/conic.hpp#L546
27446
+ https://github.com/casadi/casadi/blob/develop/casadi/core/conic.hpp#L560
27225
27447
 
27226
27448
  Implementation:
27227
- https://github.com/casadi/casadi/blob/develop/casadi/core/conic.cpp#L546-L548
27449
+ https://github.com/casadi/casadi/blob/develop/casadi/core/conic.cpp#L560-L562
27228
27450
 
27229
27451
 
27230
27452
 
@@ -27245,10 +27467,10 @@ def conic_option_info(*args) -> "std::string":
27245
27467
  Extra doc: https://github.com/casadi/casadi/wiki/L_1em
27246
27468
 
27247
27469
  Doc source:
27248
- https://github.com/casadi/casadi/blob/develop/casadi/core/conic.hpp#L550
27470
+ https://github.com/casadi/casadi/blob/develop/casadi/core/conic.hpp#L564
27249
27471
 
27250
27472
  Implementation:
27251
- https://github.com/casadi/casadi/blob/develop/casadi/core/conic.cpp#L550-L552
27473
+ https://github.com/casadi/casadi/blob/develop/casadi/core/conic.cpp#L564-L566
27252
27474
 
27253
27475
 
27254
27476
 
@@ -27696,6 +27918,25 @@ def nlpsol(*args) -> "casadi::Function":
27696
27918
  | | | available. | |
27697
27919
  | | | [default: true] | |
27698
27920
  +------------------+-----------------+------------------+------------------+
27921
+ | equality | OT_BOOLVECTOR | Indicate an | casadi::Nlpsol |
27922
+ | | | upfront hint | |
27923
+ | | | which of the | |
27924
+ | | | constraints are | |
27925
+ | | | equalities. Some | |
27926
+ | | | solvers may be | |
27927
+ | | | able to exploit | |
27928
+ | | | this knowledge. | |
27929
+ | | | When true, the | |
27930
+ | | | corresponding | |
27931
+ | | | lower and upper | |
27932
+ | | | bounds are | |
27933
+ | | | assumed equal. | |
27934
+ | | | When false, the | |
27935
+ | | | corresponding | |
27936
+ | | | bounds may be | |
27937
+ | | | equal or | |
27938
+ | | | different. | |
27939
+ +------------------+-----------------+------------------+------------------+
27699
27940
  | error_on_fail | OT_BOOL | Throw exceptions | casadi::ProtoFun |
27700
27941
  | | | when function | ction |
27701
27942
  | | | evaluation fails | |
@@ -28065,10 +28306,14 @@ def nlpsol(*args) -> "casadi::Function":
28065
28306
 
28066
28307
  - bonmin
28067
28308
 
28309
+ - fatrop
28310
+
28068
28311
  - ipopt
28069
28312
 
28070
28313
  - knitro
28071
28314
 
28315
+ - madnlp
28316
+
28072
28317
  - snopt
28073
28318
 
28074
28319
  - worhp
@@ -28423,6 +28668,90 @@ def nlpsol(*args) -> "casadi::Function":
28423
28668
 
28424
28669
 
28425
28670
 
28671
+ --------------------------------------------------------------------------------
28672
+
28673
+ fatrop
28674
+ ------
28675
+
28676
+
28677
+
28678
+ >List of available options
28679
+
28680
+ +---------------------+--------------+-------------------------------------+
28681
+ | Id | Type | Description |
28682
+ +=====================+==============+=====================================+
28683
+ | N | OT_INT | OCP horizon |
28684
+ +---------------------+--------------+-------------------------------------+
28685
+ | convexify_margin | OT_DOUBLE | When using a convexification |
28686
+ | | | strategy, make sure that the |
28687
+ | | | smallest eigenvalue is at least |
28688
+ | | | this (default: 1e-7). |
28689
+ +---------------------+--------------+-------------------------------------+
28690
+ | convexify_strategy | OT_STRING | NONE|regularize|eigen- |
28691
+ | | | reflect|eigen-clip. Strategy to |
28692
+ | | | convexify the Lagrange Hessian |
28693
+ | | | before passing it to the solver. |
28694
+ +---------------------+--------------+-------------------------------------+
28695
+ | debug | OT_BOOL | Produce debug information (default: |
28696
+ | | | false) |
28697
+ +---------------------+--------------+-------------------------------------+
28698
+ | fatrop | OT_DICT | Options to be passed to fatrop |
28699
+ +---------------------+--------------+-------------------------------------+
28700
+ | ng | OT_INTVECTOR | Number of non-dynamic constraints, |
28701
+ | | | length N+1 |
28702
+ +---------------------+--------------+-------------------------------------+
28703
+ | nu | OT_INTVECTOR | Number of controls, length N+1 |
28704
+ +---------------------+--------------+-------------------------------------+
28705
+ | nx | OT_INTVECTOR | Number of states, length N+1 |
28706
+ +---------------------+--------------+-------------------------------------+
28707
+ | structure_detection | OT_STRING | NONE | auto | manual |
28708
+ +---------------------+--------------+-------------------------------------+
28709
+
28710
+ Fatrop is a solver developed at KU Leuven by Lander Vanroye and Wilm
28711
+ Decre.
28712
+ The algorithm is based on IPOPT, but the linear algebra is much
28713
+ more
28714
+ efficient.
28715
+
28716
+ With structure_detection = 'none' (default), it will behave as a
28717
+ general-
28718
+ purpose dense nonlinear program solver.
28719
+
28720
+ With structure_detection = 'manual', you can specify a block
28721
+ structure.
28722
+
28723
+ Let's say you perform multiply shooting with a system
28724
+
28725
+ x_k+1 = A_k x_k + B_k u_k
28726
+
28727
+ Suppose your constraint Jacobian looks like:
28728
+
28729
+ ::
28730
+
28731
+ nx0 nu0 nx1 nu1 nx2 nu2
28732
+ -----------------------------
28733
+
28734
+
28735
+ nx1 |A0 B0 I0
28736
+ ng1 |C0 D0
28737
+ nx2 | A1 B1 I1
28738
+ ng2 | C1 D1
28739
+ ng3 | C2 D2
28740
+
28741
+ with n* capturing the number of states, inputs, and constraints in
28742
+ each
28743
+ block.
28744
+
28745
+ You can then specify this structure with:
28746
+
28747
+ N = 2 nx = [nx0 ,nx1, nx2] nu = [nu0, nu1, nu2] ng = [ng1, ng2, ng3]
28748
+
28749
+ With structure_detection = 'auto', the block-defining parameters nx,
28750
+ nu,
28751
+ ng, and N are automatically detected from the sparsity pattern.
28752
+
28753
+
28754
+
28426
28755
  --------------------------------------------------------------------------------
28427
28756
 
28428
28757
  ipopt
@@ -28582,6 +28911,37 @@ def nlpsol(*args) -> "casadi::Function":
28582
28911
 
28583
28912
 
28584
28913
 
28914
+ --------------------------------------------------------------------------------
28915
+
28916
+ madnlp
28917
+ ------
28918
+
28919
+
28920
+
28921
+ >List of available options
28922
+
28923
+ +--------------------+--------------+--------------------------------------+
28924
+ | Id | Type | Description |
28925
+ +====================+==============+======================================+
28926
+ | convexify_margin | OT_DOUBLE | When using a convexification |
28927
+ | | | strategy, make sure that the |
28928
+ | | | smallest eigenvalue is at least this |
28929
+ | | | (default: 1e-7). |
28930
+ +--------------------+--------------+--------------------------------------+
28931
+ | convexify_strategy | OT_STRING | NONE|regularize|eigen-reflect|eigen- |
28932
+ | | | clip. Strategy to convexify the |
28933
+ | | | Lagrange Hessian before passing it |
28934
+ | | | to the solver. |
28935
+ +--------------------+--------------+--------------------------------------+
28936
+ | madnlp | OT_DICT | Options to be passed to madnlp |
28937
+ +--------------------+--------------+--------------------------------------+
28938
+ | ng | OT_INTVECTOR | Number of constraints |
28939
+ +--------------------+--------------+--------------------------------------+
28940
+ | nw | OT_INTVECTOR | Number of variables |
28941
+ +--------------------+--------------+--------------------------------------+
28942
+
28943
+
28944
+
28585
28945
  --------------------------------------------------------------------------------
28586
28946
 
28587
28947
  snopt
@@ -29011,10 +29371,10 @@ def nlpsol(*args) -> "casadi::Function":
29011
29371
  Extra doc: https://github.com/casadi/casadi/wiki/L_21q
29012
29372
 
29013
29373
  Doc source:
29014
- https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.hpp#L115
29374
+ https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.hpp#L120
29015
29375
 
29016
29376
  Implementation:
29017
- https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.cpp#L115-L118
29377
+ https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.cpp#L120-L123
29018
29378
 
29019
29379
 
29020
29380
 
@@ -29082,10 +29442,10 @@ def nlpsol_in(*args) -> "std::string":
29082
29442
  Extra doc: https://github.com/casadi/casadi/wiki/L_1t0
29083
29443
 
29084
29444
  Doc source:
29085
- https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.hpp#L228
29445
+ https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.hpp#L233
29086
29446
 
29087
29447
  Implementation:
29088
- https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.cpp#L228-L241
29448
+ https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.cpp#L233-L246
29089
29449
 
29090
29450
 
29091
29451
 
@@ -29129,10 +29489,10 @@ def nlpsol_in(*args) -> "std::string":
29129
29489
  Extra doc: https://github.com/casadi/casadi/wiki/L_1sy
29130
29490
 
29131
29491
  Doc source:
29132
- https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.hpp#L197
29492
+ https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.hpp#L202
29133
29493
 
29134
29494
  Implementation:
29135
- https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.cpp#L197-L201
29495
+ https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.cpp#L202-L206
29136
29496
 
29137
29497
 
29138
29498
 
@@ -29179,10 +29539,10 @@ def nlpsol_in(*args) -> "std::string":
29179
29539
  Extra doc: https://github.com/casadi/casadi/wiki/L_1t0
29180
29540
 
29181
29541
  Doc source:
29182
- https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.hpp#L228
29542
+ https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.hpp#L233
29183
29543
 
29184
29544
  Implementation:
29185
- https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.cpp#L228-L241
29545
+ https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.cpp#L233-L246
29186
29546
 
29187
29547
 
29188
29548
 
@@ -29231,10 +29591,10 @@ def nlpsol_out(*args) -> "std::string":
29231
29591
  Extra doc: https://github.com/casadi/casadi/wiki/L_1t1
29232
29592
 
29233
29593
  Doc source:
29234
- https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.hpp#L243
29594
+ https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.hpp#L248
29235
29595
 
29236
29596
  Implementation:
29237
- https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.cpp#L243-L254
29597
+ https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.cpp#L248-L259
29238
29598
 
29239
29599
 
29240
29600
 
@@ -29276,10 +29636,10 @@ def nlpsol_out(*args) -> "std::string":
29276
29636
  Extra doc: https://github.com/casadi/casadi/wiki/L_1sz
29277
29637
 
29278
29638
  Doc source:
29279
- https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.hpp#L203
29639
+ https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.hpp#L208
29280
29640
 
29281
29641
  Implementation:
29282
- https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.cpp#L203-L207
29642
+ https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.cpp#L208-L212
29283
29643
 
29284
29644
 
29285
29645
 
@@ -29324,10 +29684,10 @@ def nlpsol_out(*args) -> "std::string":
29324
29684
  Extra doc: https://github.com/casadi/casadi/wiki/L_1t1
29325
29685
 
29326
29686
  Doc source:
29327
- https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.hpp#L243
29687
+ https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.hpp#L248
29328
29688
 
29329
29689
  Implementation:
29330
- https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.cpp#L243-L254
29690
+ https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.cpp#L248-L259
29331
29691
 
29332
29692
 
29333
29693
 
@@ -29351,10 +29711,10 @@ def nlpsol_n_in(*args) -> "casadi_int":
29351
29711
  Extra doc: https://github.com/casadi/casadi/wiki/L_1t2
29352
29712
 
29353
29713
  Doc source:
29354
- https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.hpp#L256
29714
+ https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.hpp#L261
29355
29715
 
29356
29716
  Implementation:
29357
- https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.cpp#L256-L258
29717
+ https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.cpp#L261-L263
29358
29718
 
29359
29719
 
29360
29720
 
@@ -29375,10 +29735,10 @@ def nlpsol_n_out(*args) -> "casadi_int":
29375
29735
  Extra doc: https://github.com/casadi/casadi/wiki/L_1t3
29376
29736
 
29377
29737
  Doc source:
29378
- https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.hpp#L260
29738
+ https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.hpp#L265
29379
29739
 
29380
29740
  Implementation:
29381
- https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.cpp#L260-L262
29741
+ https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.cpp#L265-L267
29382
29742
 
29383
29743
 
29384
29744
 
@@ -29400,10 +29760,10 @@ def nlpsol_default_in(*args) -> "std::vector< double,std::allocator< double > >"
29400
29760
  Extra doc: https://github.com/casadi/casadi/wiki/L_1t4
29401
29761
 
29402
29762
  Doc source:
29403
- https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.hpp#L222
29763
+ https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.hpp#L227
29404
29764
 
29405
29765
  Implementation:
29406
- https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.cpp#L222-L226
29766
+ https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.cpp#L227-L231
29407
29767
 
29408
29768
 
29409
29769
 
@@ -29421,10 +29781,10 @@ def nlpsol_default_in(*args) -> "std::vector< double,std::allocator< double > >"
29421
29781
  Extra doc: https://github.com/casadi/casadi/wiki/L_1t4
29422
29782
 
29423
29783
  Doc source:
29424
- https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.hpp#L222
29784
+ https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.hpp#L227
29425
29785
 
29426
29786
  Implementation:
29427
- https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.cpp#L222-L226
29787
+ https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.cpp#L227-L231
29428
29788
 
29429
29789
 
29430
29790
 
@@ -29445,10 +29805,10 @@ def nlpsol_default_in(*args) -> "std::vector< double,std::allocator< double > >"
29445
29805
  Extra doc: https://github.com/casadi/casadi/wiki/L_1t4
29446
29806
 
29447
29807
  Doc source:
29448
- https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.hpp#L209
29808
+ https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.hpp#L214
29449
29809
 
29450
29810
  Implementation:
29451
- https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.cpp#L209-L220
29811
+ https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.cpp#L214-L225
29452
29812
 
29453
29813
 
29454
29814
 
@@ -29472,10 +29832,10 @@ def nlpsol_options(*args) -> "std::vector< std::string,std::allocator< std::stri
29472
29832
  Extra doc: https://github.com/casadi/casadi/wiki/L_1t5
29473
29833
 
29474
29834
  Doc source:
29475
- https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.hpp#L801
29835
+ https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.hpp#L825
29476
29836
 
29477
29837
  Implementation:
29478
- https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.cpp#L801-L803
29838
+ https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.cpp#L825-L827
29479
29839
 
29480
29840
 
29481
29841
 
@@ -29496,10 +29856,10 @@ def nlpsol_option_type(*args) -> "std::string":
29496
29856
  Extra doc: https://github.com/casadi/casadi/wiki/L_1t6
29497
29857
 
29498
29858
  Doc source:
29499
- https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.hpp#L805
29859
+ https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.hpp#L829
29500
29860
 
29501
29861
  Implementation:
29502
- https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.cpp#L805-L807
29862
+ https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.cpp#L829-L831
29503
29863
 
29504
29864
 
29505
29865
 
@@ -29520,10 +29880,10 @@ def nlpsol_option_info(*args) -> "std::string":
29520
29880
  Extra doc: https://github.com/casadi/casadi/wiki/L_1t7
29521
29881
 
29522
29882
  Doc source:
29523
- https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.hpp#L809
29883
+ https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.hpp#L833
29524
29884
 
29525
29885
  Implementation:
29526
- https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.cpp#L809-L811
29886
+ https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.cpp#L833-L835
29527
29887
 
29528
29888
 
29529
29889
 
@@ -33740,7 +34100,7 @@ class CodeGenerator(_object):
33740
34100
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L69
33741
34101
 
33742
34102
  Implementation:
33743
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L986-L1006
34103
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L999-L1019
33744
34104
 
33745
34105
 
33746
34106
 
@@ -35905,10 +36265,10 @@ def symvar(*args) -> "std::vector< casadi::Matrix< casadi::SXElem >,std::allocat
35905
36265
  Extra doc: https://github.com/casadi/casadi/wiki/L_1u
35906
36266
 
35907
36267
  Doc source:
35908
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L525
36268
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L548
35909
36269
 
35910
36270
  Implementation:
35911
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L432-L438
36271
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L440-L446
35912
36272
 
35913
36273
 
35914
36274
 
@@ -36008,10 +36368,10 @@ def linspace(*args) -> "casadi::Matrix< casadi::SXElem >":
36008
36368
 
36009
36369
 
36010
36370
  Doc source:
36011
- https://github.com/casadi/casadi/blob/develop/casadi/core/casadi_misc.hpp#L784
36371
+ https://github.com/casadi/casadi/blob/develop/casadi/core/casadi_misc.hpp#L836
36012
36372
 
36013
36373
  Implementation:
36014
- https://github.com/casadi/casadi/blob/develop/casadi/core/casadi_misc.hpp#L784-L795
36374
+ https://github.com/casadi/casadi/blob/develop/casadi/core/casadi_misc.hpp#L836-L847
36015
36375
 
36016
36376
 
36017
36377
 
@@ -36738,10 +37098,10 @@ def solve(*args) -> "casadi::Matrix< casadi::SXElem >":
36738
37098
 
36739
37099
 
36740
37100
  Doc source:
36741
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L204
37101
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L221
36742
37102
 
36743
37103
  Implementation:
36744
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L153-L159
37104
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L161-L167
36745
37105
 
36746
37106
 
36747
37107
 
@@ -37279,10 +37639,10 @@ def diff(*args) -> "casadi::Matrix< casadi::SXElem >":
37279
37639
  Extra doc: https://github.com/casadi/casadi/wiki/L_1ln
37280
37640
 
37281
37641
  Doc source:
37282
- https://github.com/casadi/casadi/blob/develop/casadi/core/casadi_misc.hpp#L886
37642
+ https://github.com/casadi/casadi/blob/develop/casadi/core/casadi_misc.hpp#L938
37283
37643
 
37284
37644
  Implementation:
37285
- https://github.com/casadi/casadi/blob/develop/casadi/core/casadi_misc.hpp#L886-L893
37645
+ https://github.com/casadi/casadi/blob/develop/casadi/core/casadi_misc.hpp#L938-L945
37286
37646
 
37287
37647
 
37288
37648
 
@@ -37304,10 +37664,10 @@ def cumsum(*args) -> "casadi::Matrix< casadi::SXElem >":
37304
37664
  Extra doc: https://github.com/casadi/casadi/wiki/L_1lm
37305
37665
 
37306
37666
  Doc source:
37307
- https://github.com/casadi/casadi/blob/develop/casadi/core/casadi_misc.hpp#L864
37667
+ https://github.com/casadi/casadi/blob/develop/casadi/core/casadi_misc.hpp#L916
37308
37668
 
37309
37669
  Implementation:
37310
- https://github.com/casadi/casadi/blob/develop/casadi/core/casadi_misc.hpp#L864-L872
37670
+ https://github.com/casadi/casadi/blob/develop/casadi/core/casadi_misc.hpp#L916-L924
37311
37671
 
37312
37672
 
37313
37673
 
@@ -37343,7 +37703,7 @@ def einstein(*args) -> "casadi::Matrix< casadi::SXElem >":
37343
37703
  Extra doc: https://github.com/casadi/casadi/wiki/L_r5
37344
37704
 
37345
37705
  Doc source:
37346
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L520
37706
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L533
37347
37707
 
37348
37708
  Implementation:
37349
37709
  https://github.com/casadi/casadi/blob/develop/casadi/core/mx.cpp#L646-L652
@@ -37420,10 +37780,10 @@ def evalf(*args) -> "casadi::DM":
37420
37780
  Extra doc: https://github.com/casadi/casadi/wiki/L_rf
37421
37781
 
37422
37782
  Doc source:
37423
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L802
37783
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L816
37424
37784
 
37425
37785
  Implementation:
37426
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L802-L804
37786
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L816-L818
37427
37787
 
37428
37788
 
37429
37789
 
@@ -37498,10 +37858,10 @@ def reverse(*args) -> "std::vector< std::vector< casadi::Matrix< casadi::SXElem
37498
37858
  Extra doc: https://github.com/casadi/casadi/wiki/L_1la
37499
37859
 
37500
37860
  Doc source:
37501
- https://github.com/casadi/casadi/blob/develop/casadi/core/casadi_misc.hpp#L530
37861
+ https://github.com/casadi/casadi/blob/develop/casadi/core/casadi_misc.hpp#L582
37502
37862
 
37503
37863
  Implementation:
37504
- https://github.com/casadi/casadi/blob/develop/casadi/core/casadi_misc.hpp#L530-L534
37864
+ https://github.com/casadi/casadi/blob/develop/casadi/core/casadi_misc.hpp#L582-L586
37505
37865
 
37506
37866
 
37507
37867
 
@@ -38424,10 +38784,10 @@ def find(*args) -> "casadi::MX":
38424
38784
  Extra doc: https://github.com/casadi/casadi/wiki/L_1le
38425
38785
 
38426
38786
  Doc source:
38427
- https://github.com/casadi/casadi/blob/develop/casadi/core/casadi_misc.hpp#L559
38787
+ https://github.com/casadi/casadi/blob/develop/casadi/core/casadi_misc.hpp#L611
38428
38788
 
38429
38789
  Implementation:
38430
- https://github.com/casadi/casadi/blob/develop/casadi/core/casadi_misc.hpp#L559-L565
38790
+ https://github.com/casadi/casadi/blob/develop/casadi/core/casadi_misc.hpp#L611-L617
38431
38791
 
38432
38792
 
38433
38793
 
@@ -38449,10 +38809,10 @@ def low(*args) -> "casadi::MX":
38449
38809
  Extra doc: https://github.com/casadi/casadi/wiki/L_r8
38450
38810
 
38451
38811
  Doc source:
38452
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L699
38812
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L713
38453
38813
 
38454
38814
  Implementation:
38455
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L699-L701
38815
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L713-L715
38456
38816
 
38457
38817
 
38458
38818
 
@@ -38472,10 +38832,10 @@ def inv_node(*args) -> "casadi::MX":
38472
38832
  Extra doc: https://github.com/casadi/casadi/wiki/L_re
38473
38833
 
38474
38834
  Doc source:
38475
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L793
38835
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L807
38476
38836
 
38477
38837
  Implementation:
38478
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L793-L795
38838
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L807-L809
38479
38839
 
38480
38840
 
38481
38841
 
@@ -38500,10 +38860,10 @@ def matrix_expand(*args) -> "casadi::MX":
38500
38860
  Extra doc: https://github.com/casadi/casadi/wiki/L_rc
38501
38861
 
38502
38862
  Doc source:
38503
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L745
38863
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L759
38504
38864
 
38505
38865
  Implementation:
38506
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L745-L749
38866
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L759-L763
38507
38867
 
38508
38868
 
38509
38869
 
@@ -38528,10 +38888,10 @@ def graph_substitute(*args) -> "std::vector< casadi::MX,std::allocator< casadi::
38528
38888
  Extra doc: https://github.com/casadi/casadi/wiki/L_ra
38529
38889
 
38530
38890
  Doc source:
38531
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L720
38891
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L734
38532
38892
 
38533
38893
  Implementation:
38534
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L720-L724
38894
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L734-L738
38535
38895
 
38536
38896
 
38537
38897
 
@@ -38581,10 +38941,10 @@ def stop_diff(*args) -> "casadi::MX":
38581
38941
  Extra doc: https://github.com/casadi/casadi/wiki/L_25o
38582
38942
 
38583
38943
  Doc source:
38584
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L835
38944
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L849
38585
38945
 
38586
38946
  Implementation:
38587
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L835-L837
38947
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L849-L851
38588
38948
 
38589
38949
 
38590
38950
 
@@ -38592,6 +38952,28 @@ def stop_diff(*args) -> "casadi::MX":
38592
38952
  """
38593
38953
  return _casadi.stop_diff(*args)
38594
38954
 
38955
+ def difference(*args) -> "std::vector< casadi::MX,std::allocator< casadi::MX > >":
38956
+ """
38957
+ \\bried Return all elements of a that do not occur in b, preserving
38958
+
38959
+ ::
38960
+
38961
+ difference([MX] a, [MX] b) -> [MX]
38962
+
38963
+ order
38964
+
38965
+ Doc source:
38966
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L854
38967
+
38968
+ Implementation:
38969
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L854-L856
38970
+
38971
+
38972
+
38973
+
38974
+ """
38975
+ return _casadi.difference(*args)
38976
+
38595
38977
  def no_hess(*args) -> "casadi::MX":
38596
38978
  """
38597
38979
  Stop second derivatives of an expression wrt to all its symbolic
@@ -38607,10 +38989,10 @@ def no_hess(*args) -> "casadi::MX":
38607
38989
  Extra doc: https://github.com/casadi/casadi/wiki/L_25n
38608
38990
 
38609
38991
  Doc source:
38610
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L827
38992
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L841
38611
38993
 
38612
38994
  Implementation:
38613
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L827-L829
38995
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L841-L843
38614
38996
 
38615
38997
 
38616
38998
 
@@ -38633,10 +39015,10 @@ def no_grad(*args) -> "casadi::MX":
38633
39015
  Extra doc: https://github.com/casadi/casadi/wiki/L_25m
38634
39016
 
38635
39017
  Doc source:
38636
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L818
39018
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L832
38637
39019
 
38638
39020
  Implementation:
38639
- https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L818-L820
39021
+ https://github.com/casadi/casadi/blob/develop/casadi/core/mx.hpp#L832-L834
38640
39022
 
38641
39023
 
38642
39024
 
@@ -41729,10 +42111,10 @@ def detect_simple_bounds(*args) -> "std::vector< casadi_int > &, casadi::MX &, c
41729
42111
  Extra doc: https://github.com/casadi/casadi/wiki/L_1sw
41730
42112
 
41731
42113
  Doc source:
41732
- https://github.com/casadi/casadi/blob/develop/casadi/core/nlp_tools.hpp#L207
42114
+ https://github.com/casadi/casadi/blob/develop/casadi/core/nlp_tools.hpp#L217
41733
42115
 
41734
42116
  Implementation:
41735
- https://github.com/casadi/casadi/blob/develop/casadi/core/nlp_tools.cpp#L207-L215
42117
+ https://github.com/casadi/casadi/blob/develop/casadi/core/nlp_tools.cpp#L217-L225
41736
42118
 
41737
42119
 
41738
42120
 
@@ -47854,7 +48236,7 @@ class Opti(PrintableCommon, SharedObject):
47854
48236
  https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L200
47855
48237
 
47856
48238
  Implementation:
47857
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L145-L151
48239
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L153-L159
47858
48240
 
47859
48241
 
47860
48242
 
@@ -47877,7 +48259,7 @@ class Opti(PrintableCommon, SharedObject):
47877
48259
  https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L200
47878
48260
 
47879
48261
  Implementation:
47880
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L145-L151
48262
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L153-L159
47881
48263
 
47882
48264
 
47883
48265
 
@@ -47915,6 +48297,50 @@ class Opti(PrintableCommon, SharedObject):
47915
48297
  return _casadi.Opti_set_value(self, *args)
47916
48298
 
47917
48299
 
48300
+ def set_domain(self, *args) -> "void":
48301
+ """
48302
+ [INTERNAL]
48303
+
48304
+ ::
48305
+
48306
+ set_domain(self, MX x, str domain)
48307
+
48308
+ Set domain of a decision variable.
48309
+
48310
+ Parameters:
48311
+ -----------
48312
+
48313
+ x:
48314
+ decision variable
48315
+
48316
+ type:
48317
+ 'real', 'integer' (default: real)
48318
+
48319
+
48320
+
48321
+ ::
48322
+
48323
+ * opti.set_domain(x, "real")
48324
+ * opti.set_domain(x, "integer")
48325
+ *
48326
+
48327
+
48328
+
48329
+ Extra doc: https://github.com/casadi/casadi/wiki/L_27t
48330
+
48331
+ Doc source:
48332
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L215
48333
+
48334
+ Implementation:
48335
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L145-L151
48336
+
48337
+
48338
+
48339
+
48340
+ """
48341
+ return _casadi.Opti_set_domain(self, *args)
48342
+
48343
+
47918
48344
  def solve(self, *args) -> "casadi::OptiSol":
47919
48345
  """
47920
48346
  [INTERNAL]
@@ -47926,10 +48352,10 @@ class Opti(PrintableCommon, SharedObject):
47926
48352
  Crunch the numbers; solve the problem.
47927
48353
 
47928
48354
  Doc source:
47929
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L204
48355
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L221
47930
48356
 
47931
48357
  Implementation:
47932
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L153-L159
48358
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L161-L167
47933
48359
 
47934
48360
 
47935
48361
 
@@ -47955,10 +48381,10 @@ class Opti(PrintableCommon, SharedObject):
47955
48381
  Extra doc: https://github.com/casadi/casadi/wiki/L_1e
47956
48382
 
47957
48383
  Doc source:
47958
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L212
48384
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L229
47959
48385
 
47960
48386
  Implementation:
47961
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L161-L167
48387
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L169-L175
47962
48388
 
47963
48389
 
47964
48390
 
@@ -47992,10 +48418,10 @@ class Opti(PrintableCommon, SharedObject):
47992
48418
  value
47993
48419
 
47994
48420
  Doc source:
47995
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L225
48421
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L242
47996
48422
 
47997
48423
  Implementation:
47998
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L186-L192
48424
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L194-L200
47999
48425
 
48000
48426
 
48001
48427
 
@@ -48023,10 +48449,10 @@ class Opti(PrintableCommon, SharedObject):
48023
48449
  value
48024
48450
 
48025
48451
  Doc source:
48026
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L224
48452
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L241
48027
48453
 
48028
48454
  Implementation:
48029
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L178-L184
48455
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L186-L192
48030
48456
 
48031
48457
 
48032
48458
 
@@ -48057,10 +48483,10 @@ class Opti(PrintableCommon, SharedObject):
48057
48483
  value
48058
48484
 
48059
48485
  Doc source:
48060
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L225
48486
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L242
48061
48487
 
48062
48488
  Implementation:
48063
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L186-L192
48489
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L194-L200
48064
48490
 
48065
48491
 
48066
48492
 
@@ -48091,10 +48517,10 @@ class Opti(PrintableCommon, SharedObject):
48091
48517
  value
48092
48518
 
48093
48519
  Doc source:
48094
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L223
48520
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L240
48095
48521
 
48096
48522
  Implementation:
48097
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L169-L175
48523
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L177-L183
48098
48524
 
48099
48525
 
48100
48526
 
@@ -48123,10 +48549,10 @@ class Opti(PrintableCommon, SharedObject):
48123
48549
  Extra doc: https://github.com/casadi/casadi/wiki/L_1f
48124
48550
 
48125
48551
  Doc source:
48126
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L234
48552
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L251
48127
48553
 
48128
48554
  Implementation:
48129
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L194-L200
48555
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L202-L208
48130
48556
 
48131
48557
 
48132
48558
 
@@ -48157,10 +48583,10 @@ class Opti(PrintableCommon, SharedObject):
48157
48583
  Extra doc: https://github.com/casadi/casadi/wiki/L_1g
48158
48584
 
48159
48585
  Doc source:
48160
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L242
48586
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L259
48161
48587
 
48162
48588
  Implementation:
48163
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L202-L208
48589
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L210-L216
48164
48590
 
48165
48591
 
48166
48592
 
@@ -48182,10 +48608,10 @@ class Opti(PrintableCommon, SharedObject):
48182
48608
  Extra doc: https://github.com/casadi/casadi/wiki/L_266
48183
48609
 
48184
48610
  Doc source:
48185
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L247
48611
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L264
48186
48612
 
48187
48613
  Implementation:
48188
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L210-L216
48614
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L218-L224
48189
48615
 
48190
48616
 
48191
48617
 
@@ -48207,10 +48633,10 @@ class Opti(PrintableCommon, SharedObject):
48207
48633
  Extra doc: https://github.com/casadi/casadi/wiki/L_267
48208
48634
 
48209
48635
  Doc source:
48210
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L252
48636
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L269
48211
48637
 
48212
48638
  Implementation:
48213
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L218-L224
48639
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L226-L232
48214
48640
 
48215
48641
 
48216
48642
 
@@ -48250,10 +48676,10 @@ class Opti(PrintableCommon, SharedObject):
48250
48676
  Extra doc: https://github.com/casadi/casadi/wiki/L_1h
48251
48677
 
48252
48678
  Doc source:
48253
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L262
48679
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L279
48254
48680
 
48255
48681
  Implementation:
48256
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L234-L240
48682
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L242-L248
48257
48683
 
48258
48684
 
48259
48685
 
@@ -48275,10 +48701,10 @@ class Opti(PrintableCommon, SharedObject):
48275
48701
  Extra doc: https://github.com/casadi/casadi/wiki/L_268
48276
48702
 
48277
48703
  Doc source:
48278
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L267
48704
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L284
48279
48705
 
48280
48706
  Implementation:
48281
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L242-L248
48707
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L250-L256
48282
48708
 
48283
48709
 
48284
48710
 
@@ -48300,10 +48726,10 @@ class Opti(PrintableCommon, SharedObject):
48300
48726
  Extra doc: https://github.com/casadi/casadi/wiki/L_269
48301
48727
 
48302
48728
  Doc source:
48303
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L272
48729
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L289
48304
48730
 
48305
48731
  Implementation:
48306
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L250-L256
48732
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L258-L264
48307
48733
 
48308
48734
 
48309
48735
 
@@ -48325,10 +48751,10 @@ class Opti(PrintableCommon, SharedObject):
48325
48751
  Extra doc: https://github.com/casadi/casadi/wiki/L_26a
48326
48752
 
48327
48753
  Doc source:
48328
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L277
48754
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L294
48329
48755
 
48330
48756
  Implementation:
48331
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L258-L264
48757
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L266-L272
48332
48758
 
48333
48759
 
48334
48760
 
@@ -48351,10 +48777,10 @@ class Opti(PrintableCommon, SharedObject):
48351
48777
  Extra doc: https://github.com/casadi/casadi/wiki/L_26b
48352
48778
 
48353
48779
  Doc source:
48354
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L282
48780
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L299
48355
48781
 
48356
48782
  Implementation:
48357
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L266-L272
48783
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L274-L280
48358
48784
 
48359
48785
 
48360
48786
 
@@ -48376,10 +48802,10 @@ class Opti(PrintableCommon, SharedObject):
48376
48802
  Extra doc: https://github.com/casadi/casadi/wiki/L_26c
48377
48803
 
48378
48804
  Doc source:
48379
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L287
48805
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L304
48380
48806
 
48381
48807
  Implementation:
48382
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L274-L280
48808
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L282-L288
48383
48809
 
48384
48810
 
48385
48811
 
@@ -48401,10 +48827,10 @@ class Opti(PrintableCommon, SharedObject):
48401
48827
  Extra doc: https://github.com/casadi/casadi/wiki/L_26d
48402
48828
 
48403
48829
  Doc source:
48404
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L292
48830
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L309
48405
48831
 
48406
48832
  Implementation:
48407
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L282-L288
48833
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L290-L296
48408
48834
 
48409
48835
 
48410
48836
 
@@ -48426,10 +48852,10 @@ class Opti(PrintableCommon, SharedObject):
48426
48852
  Extra doc: https://github.com/casadi/casadi/wiki/L_26e
48427
48853
 
48428
48854
  Doc source:
48429
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L297
48855
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L314
48430
48856
 
48431
48857
  Implementation:
48432
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L290-L296
48858
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L298-L304
48433
48859
 
48434
48860
 
48435
48861
 
@@ -48451,10 +48877,10 @@ class Opti(PrintableCommon, SharedObject):
48451
48877
  Extra doc: https://github.com/casadi/casadi/wiki/L_26f
48452
48878
 
48453
48879
  Doc source:
48454
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L302
48880
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L319
48455
48881
 
48456
48882
  Implementation:
48457
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L298-L304
48883
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L306-L312
48458
48884
 
48459
48885
 
48460
48886
 
@@ -48500,10 +48926,10 @@ class Opti(PrintableCommon, SharedObject):
48500
48926
  Extra doc: https://github.com/casadi/casadi/wiki/L_1i
48501
48927
 
48502
48928
  Doc source:
48503
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L314
48929
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L331
48504
48930
 
48505
48931
  Implementation:
48506
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L315-L321
48932
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L323-L329
48507
48933
 
48508
48934
 
48509
48935
 
@@ -48544,10 +48970,10 @@ class Opti(PrintableCommon, SharedObject):
48544
48970
  Extra doc: https://github.com/casadi/casadi/wiki/L_1j
48545
48971
 
48546
48972
  Doc source:
48547
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L336
48973
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L353
48548
48974
 
48549
48975
  Implementation:
48550
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L341-L361
48976
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L349-L369
48551
48977
 
48552
48978
 
48553
48979
 
@@ -48582,10 +49008,10 @@ class Opti(PrintableCommon, SharedObject):
48582
49008
  Extra doc: https://github.com/casadi/casadi/wiki/L_1j
48583
49009
 
48584
49010
  Doc source:
48585
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L326
49011
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L343
48586
49012
 
48587
49013
  Implementation:
48588
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L335-L339
49014
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L343-L347
48589
49015
 
48590
49016
 
48591
49017
 
@@ -48623,10 +49049,10 @@ class Opti(PrintableCommon, SharedObject):
48623
49049
  Extra doc: https://github.com/casadi/casadi/wiki/L_1j
48624
49050
 
48625
49051
  Doc source:
48626
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L336
49052
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L353
48627
49053
 
48628
49054
  Implementation:
48629
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L341-L361
49055
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L349-L369
48630
49056
 
48631
49057
 
48632
49058
 
@@ -48664,10 +49090,10 @@ class Opti(PrintableCommon, SharedObject):
48664
49090
  Extra doc: https://github.com/casadi/casadi/wiki/L_1j
48665
49091
 
48666
49092
  Doc source:
48667
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L330
49093
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L347
48668
49094
 
48669
49095
  Implementation:
48670
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L323-L333
49096
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L331-L341
48671
49097
 
48672
49098
 
48673
49099
 
@@ -48715,10 +49141,10 @@ class Opti(PrintableCommon, SharedObject):
48715
49141
  Extra doc: https://github.com/casadi/casadi/wiki/L_1l
48716
49142
 
48717
49143
  Doc source:
48718
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L362
49144
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L379
48719
49145
 
48720
49146
  Implementation:
48721
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L733-L735
49147
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L741-L743
48722
49148
 
48723
49149
 
48724
49150
 
@@ -48748,10 +49174,10 @@ class Opti(PrintableCommon, SharedObject):
48748
49174
  Extra doc: https://github.com/casadi/casadi/wiki/L_1m
48749
49175
 
48750
49176
  Doc source:
48751
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L372
49177
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L389
48752
49178
 
48753
49179
  Implementation:
48754
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L736-L738
49180
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L744-L746
48755
49181
 
48756
49182
 
48757
49183
 
@@ -48777,10 +49203,10 @@ class Opti(PrintableCommon, SharedObject):
48777
49203
  Extra doc: https://github.com/casadi/casadi/wiki/L_1n
48778
49204
 
48779
49205
  Doc source:
48780
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L380
49206
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L397
48781
49207
 
48782
49208
  Implementation:
48783
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L739-L741
49209
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L747-L749
48784
49210
 
48785
49211
 
48786
49212
 
@@ -48816,10 +49242,10 @@ class Opti(PrintableCommon, SharedObject):
48816
49242
  Extra doc: https://github.com/casadi/casadi/wiki/L_1o
48817
49243
 
48818
49244
  Doc source:
48819
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L388
49245
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L405
48820
49246
 
48821
49247
  Implementation:
48822
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L379-L385
49248
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L387-L393
48823
49249
 
48824
49250
 
48825
49251
 
@@ -48855,10 +49281,10 @@ class Opti(PrintableCommon, SharedObject):
48855
49281
  Get user data.
48856
49282
 
48857
49283
  Doc source:
48858
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L391
49284
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L408
48859
49285
 
48860
49286
  Implementation:
48861
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L392-L398
49287
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L400-L406
48862
49288
 
48863
49289
 
48864
49290
 
@@ -48878,10 +49304,10 @@ class Opti(PrintableCommon, SharedObject):
48878
49304
  Readable name of the class.
48879
49305
 
48880
49306
  Doc source:
48881
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L394
49307
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L411
48882
49308
 
48883
49309
  Implementation:
48884
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L394-L394
49310
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L411-L411
48885
49311
 
48886
49312
 
48887
49313
 
@@ -48901,10 +49327,10 @@ class Opti(PrintableCommon, SharedObject):
48901
49327
  Print representation.
48902
49328
 
48903
49329
  Doc source:
48904
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L397
49330
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L414
48905
49331
 
48906
49332
  Implementation:
48907
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L636-L656
49333
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L644-L664
48908
49334
 
48909
49335
 
48910
49336
 
@@ -48924,10 +49350,10 @@ class Opti(PrintableCommon, SharedObject):
48924
49350
  Get string representation.
48925
49351
 
48926
49352
  Doc source:
48927
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L400
49353
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L417
48928
49354
 
48929
49355
  Implementation:
48930
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L658-L662
49356
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L666-L670
48931
49357
 
48932
49358
 
48933
49359
 
@@ -48952,10 +49378,10 @@ class Opti(PrintableCommon, SharedObject):
48952
49378
  Extra doc: https://github.com/casadi/casadi/wiki/L_1p
48953
49379
 
48954
49380
  Doc source:
48955
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L409
49381
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L426
48956
49382
 
48957
49383
  Implementation:
48958
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L371-L377
49384
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L379-L385
48959
49385
 
48960
49386
 
48961
49387
 
@@ -48975,10 +49401,10 @@ class Opti(PrintableCommon, SharedObject):
48975
49401
  Extra doc: https://github.com/casadi/casadi/wiki/L_1p
48976
49402
 
48977
49403
  Doc source:
48978
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L409
49404
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L426
48979
49405
 
48980
49406
  Implementation:
48981
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L371-L377
49407
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L379-L385
48982
49408
 
48983
49409
 
48984
49410
 
@@ -49001,10 +49427,10 @@ class Opti(PrintableCommon, SharedObject):
49001
49427
  Extra doc: https://github.com/casadi/casadi/wiki/L_1p
49002
49428
 
49003
49429
  Doc source:
49004
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L408
49430
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L425
49005
49431
 
49006
49432
  Implementation:
49007
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L363-L369
49433
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L371-L377
49008
49434
 
49009
49435
 
49010
49436
 
@@ -49233,6 +49659,8 @@ OPTI_UNKNOWN = _casadi.OPTI_UNKNOWN
49233
49659
  OPTI_VAR = _casadi.OPTI_VAR
49234
49660
  OPTI_PAR = _casadi.OPTI_PAR
49235
49661
  OPTI_DUAL_G = _casadi.OPTI_DUAL_G
49662
+ OPTI_DOMAIN_REAL = _casadi.OPTI_DOMAIN_REAL
49663
+ OPTI_DOMAIN_INTEGER = _casadi.OPTI_DOMAIN_INTEGER
49236
49664
  class IndexAbstraction(_object):
49237
49665
  """
49238
49666
 
@@ -49384,6 +49812,9 @@ class MetaVar(IndexAbstraction):
49384
49812
  __swig_getmethods__["type"] = _casadi.MetaVar_type_get
49385
49813
  if _newclass:
49386
49814
  type = _swig_property(_casadi.MetaVar_type_get)
49815
+ __swig_getmethods__["domain"] = _casadi.MetaVar_domain_get
49816
+ if _newclass:
49817
+ domain = _swig_property(_casadi.MetaVar_domain_get)
49387
49818
  __swig_getmethods__["count"] = _casadi.MetaVar_count_get
49388
49819
  if _newclass:
49389
49820
  count = _swig_property(_casadi.MetaVar_count_get)
@@ -49513,10 +49944,10 @@ class OptiAdvanced(Opti):
49513
49944
  Get the underlying CasADi solver of the Opti stack.
49514
49945
 
49515
49946
  Doc source:
49516
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L511
49947
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L534
49517
49948
 
49518
49949
  Implementation:
49519
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L400-L406
49950
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L408-L414
49520
49951
 
49521
49952
 
49522
49953
 
@@ -49537,10 +49968,10 @@ class OptiAdvanced(Opti):
49537
49968
  not variables
49538
49969
 
49539
49970
  Doc source:
49540
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L514
49971
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L537
49541
49972
 
49542
49973
  Implementation:
49543
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L408-L414
49974
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L416-L422
49544
49975
 
49545
49976
 
49546
49977
 
@@ -49567,10 +49998,10 @@ class OptiAdvanced(Opti):
49567
49998
  Extra doc: https://github.com/casadi/casadi/wiki/L_1u
49568
49999
 
49569
50000
  Doc source:
49570
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L525
50001
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L548
49571
50002
 
49572
50003
  Implementation:
49573
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L432-L438
50004
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L440-L446
49574
50005
 
49575
50006
 
49576
50007
 
@@ -49591,10 +50022,10 @@ class OptiAdvanced(Opti):
49591
50022
  Extra doc: https://github.com/casadi/casadi/wiki/L_1u
49592
50023
 
49593
50024
  Doc source:
49594
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L523
50025
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L546
49595
50026
 
49596
50027
  Implementation:
49597
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L416-L422
50028
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L424-L430
49598
50029
 
49599
50030
 
49600
50031
 
@@ -49618,10 +50049,10 @@ class OptiAdvanced(Opti):
49618
50049
  Extra doc: https://github.com/casadi/casadi/wiki/L_1u
49619
50050
 
49620
50051
  Doc source:
49621
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L524
50052
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L547
49622
50053
 
49623
50054
  Implementation:
49624
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L424-L430
50055
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L432-L438
49625
50056
 
49626
50057
 
49627
50058
 
@@ -49645,10 +50076,10 @@ class OptiAdvanced(Opti):
49645
50076
  Extra doc: https://github.com/casadi/casadi/wiki/L_1u
49646
50077
 
49647
50078
  Doc source:
49648
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L525
50079
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L548
49649
50080
 
49650
50081
  Implementation:
49651
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L432-L438
50082
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L440-L446
49652
50083
 
49653
50084
 
49654
50085
 
@@ -49671,10 +50102,10 @@ class OptiAdvanced(Opti):
49671
50102
  Interpret an expression (for internal use only)
49672
50103
 
49673
50104
  Doc source:
49674
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L529
50105
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L552
49675
50106
 
49676
50107
  Implementation:
49677
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L440-L446
50108
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L448-L454
49678
50109
 
49679
50110
 
49680
50111
 
@@ -49694,10 +50125,10 @@ class OptiAdvanced(Opti):
49694
50125
  Get meta-data of symbol (for internal use only)
49695
50126
 
49696
50127
  Doc source:
49697
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L532
50128
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L555
49698
50129
 
49699
50130
  Implementation:
49700
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L448-L454
50131
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L456-L462
49701
50132
 
49702
50133
 
49703
50134
 
@@ -49717,10 +50148,10 @@ class OptiAdvanced(Opti):
49717
50148
  Get meta-data of symbol (for internal use only)
49718
50149
 
49719
50150
  Doc source:
49720
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L535
50151
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L558
49721
50152
 
49722
50153
  Implementation:
49723
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L456-L462
50154
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L464-L470
49724
50155
 
49725
50156
 
49726
50157
 
@@ -49740,10 +50171,10 @@ class OptiAdvanced(Opti):
49740
50171
  Set meta-data of an expression.
49741
50172
 
49742
50173
  Doc source:
49743
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L538
50174
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L561
49744
50175
 
49745
50176
  Implementation:
49746
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L464-L470
50177
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L472-L478
49747
50178
 
49748
50179
 
49749
50180
 
@@ -49763,10 +50194,10 @@ class OptiAdvanced(Opti):
49763
50194
  Set meta-data of an expression.
49764
50195
 
49765
50196
  Doc source:
49766
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L541
50197
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L564
49767
50198
 
49768
50199
  Implementation:
49769
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L472-L478
50200
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L480-L486
49770
50201
 
49771
50202
 
49772
50203
 
@@ -50025,10 +50456,10 @@ class OptiAdvanced(Opti):
50025
50456
  Fix the structure of the optimization problem.
50026
50457
 
50027
50458
  Doc source:
50028
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L572
50459
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L595
50029
50460
 
50030
50461
  Implementation:
50031
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L664-L670
50462
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L672-L678
50032
50463
 
50033
50464
 
50034
50465
 
@@ -50316,10 +50747,10 @@ class OptiSol(PrintableCommon):
50316
50747
  value
50317
50748
 
50318
50749
  Doc source:
50319
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L622
50750
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L645
50320
50751
 
50321
50752
  Implementation:
50322
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L760-L762
50753
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L768-L770
50323
50754
 
50324
50755
 
50325
50756
 
@@ -50347,10 +50778,10 @@ class OptiSol(PrintableCommon):
50347
50778
  value
50348
50779
 
50349
50780
  Doc source:
50350
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L621
50781
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L644
50351
50782
 
50352
50783
  Implementation:
50353
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L757-L759
50784
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L765-L767
50354
50785
 
50355
50786
 
50356
50787
 
@@ -50381,10 +50812,10 @@ class OptiSol(PrintableCommon):
50381
50812
  value
50382
50813
 
50383
50814
  Doc source:
50384
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L622
50815
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L645
50385
50816
 
50386
50817
  Implementation:
50387
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L760-L762
50818
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L768-L770
50388
50819
 
50389
50820
 
50390
50821
 
@@ -50415,10 +50846,10 @@ class OptiSol(PrintableCommon):
50415
50846
  value
50416
50847
 
50417
50848
  Doc source:
50418
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L620
50849
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L643
50419
50850
 
50420
50851
  Implementation:
50421
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L754-L756
50852
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L762-L764
50422
50853
 
50423
50854
 
50424
50855
 
@@ -50441,10 +50872,10 @@ class OptiSol(PrintableCommon):
50441
50872
  get assignment expressions for the optimal solution
50442
50873
 
50443
50874
  Doc source:
50444
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L626
50875
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L649
50445
50876
 
50446
50877
  Implementation:
50447
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L764-L766
50878
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L772-L774
50448
50879
 
50449
50880
 
50450
50881
 
@@ -50484,10 +50915,10 @@ class OptiSol(PrintableCommon):
50484
50915
  Extra doc: https://github.com/casadi/casadi/wiki/L_1w
50485
50916
 
50486
50917
  Doc source:
50487
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L635
50918
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.hpp#L658
50488
50919
 
50489
50920
  Implementation:
50490
- https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L772-L774
50921
+ https://github.com/casadi/casadi/blob/develop/casadi/core/optistack.cpp#L780-L782
50491
50922
 
50492
50923
 
50493
50924