casadi 3.6.2__cp311-none-manylinux2014_x86_64.whl → 3.6.4__cp311-none-manylinux2014_x86_64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2063) hide show
  1. casadi/_casadi.so +0 -0
  2. casadi/casadi.py +217 -60
  3. casadi/cbc +0 -0
  4. casadi/clp +0 -0
  5. casadi/cmake/alpaqa/alpaqaConfig.cmake +24 -0
  6. casadi/cmake/alpaqa/alpaqaConfigVersion.cmake +70 -0
  7. casadi/cmake/alpaqa/alpaqaTargets-release.cmake +29 -0
  8. casadi/cmake/alpaqa/alpaqaTargets.cmake +131 -0
  9. casadi/cmake/casadi-config-version.cmake +1 -1
  10. casadi/cmake/casadi-config.cmake +4 -0
  11. casadi/cmake/highs/highs-config.cmake +18 -4
  12. casadi/cmake/highs/highs-targets-release.cmake +3 -3
  13. casadi/cmake/highs/highs-targets.cmake +1 -1
  14. casadi/cmake/proxsuite/find-external/Simde/FindSimde.cmake +39 -0
  15. casadi/cmake/proxsuite/proxsuiteConfig.cmake +177 -0
  16. casadi/cmake/proxsuite/proxsuiteConfigVersion.cmake +70 -0
  17. casadi/cmake/proxsuite/proxsuiteTargets.cmake +115 -0
  18. casadi/cmake/sleqp/sleqp-config-version.cmake +70 -0
  19. casadi/cmake/sleqp/sleqp-config.cmake +1 -0
  20. casadi/cmake/sleqp/sleqp-targets-release.cmake +20 -0
  21. casadi/cmake/sleqp/sleqp-targets.cmake +102 -0
  22. casadi/cmake/trlib/trlib-config-release.cmake +19 -0
  23. casadi/cmake/trlib/trlib-config-version.cmake +88 -0
  24. casadi/cmake/trlib/trlib-config.cmake +107 -0
  25. casadi/highs +0 -0
  26. casadi/include/casadi/casadi.i +20 -3
  27. casadi/include/casadi/config.h +8 -8
  28. casadi/include/casadi/core/calculus.hpp +1 -1
  29. casadi/include/casadi/core/code_generator.hpp +10 -0
  30. casadi/include/casadi/core/fmu.hpp +224 -0
  31. casadi/include/casadi/core/generic_matrix.hpp +4 -2
  32. casadi/include/casadi/core/nlpsol.hpp +0 -2
  33. casadi/include/casadi/core/runtime/casadi_finite_diff.hpp +204 -11
  34. casadi/include/casadi/core/serializing_stream.hpp +12 -0
  35. casadi/include/casadi/core/sparsity_interface.hpp +55 -1
  36. casadi/include/casadi/doc.i +916 -462
  37. casadi/include/casadi/doc_merged.i +492 -176
  38. casadi/include/casadi/mem.h +13 -2
  39. casadi/include/casadi/valgrind-casadi.supp +82 -0
  40. casadi/include/casadi/valgrind-python.supp +39 -0
  41. casadi/include/highs/HConfig.h +4 -7
  42. casadi/include/highs/Highs.h +240 -51
  43. casadi/include/highs/filereaderlp/builder.hpp +12 -13
  44. casadi/include/highs/filereaderlp/model.hpp +32 -35
  45. casadi/include/highs/fortran/highs_fortran_api.mod +0 -0
  46. casadi/include/highs/interfaces/highs_c_api.h +964 -577
  47. casadi/include/highs/io/Filereader.h +2 -4
  48. casadi/include/highs/io/FilereaderEms.h +2 -4
  49. casadi/include/highs/io/FilereaderLp.h +2 -4
  50. casadi/include/highs/io/FilereaderMps.h +2 -4
  51. casadi/include/highs/io/HMPSIO.h +2 -4
  52. casadi/include/highs/io/HMpsFF.h +2 -4
  53. casadi/include/highs/io/HighsIO.h +19 -13
  54. casadi/include/highs/io/LoadOptions.h +7 -6
  55. casadi/include/highs/ipm/IpxWrapper.h +4 -5
  56. casadi/include/highs/lp_data/HConst.h +60 -15
  57. casadi/include/highs/lp_data/HStruct.h +32 -8
  58. casadi/include/highs/lp_data/HighsAnalysis.h +2 -4
  59. casadi/include/highs/lp_data/HighsCallback.h +33 -0
  60. casadi/include/highs/lp_data/HighsCallbackStruct.h +36 -0
  61. casadi/include/highs/lp_data/HighsDebug.h +2 -4
  62. casadi/include/highs/lp_data/HighsInfo.h +22 -23
  63. casadi/include/highs/lp_data/HighsInfoDebug.h +2 -4
  64. casadi/include/highs/lp_data/HighsLp.h +14 -6
  65. casadi/include/highs/lp_data/HighsLpSolverObject.h +6 -5
  66. casadi/include/highs/lp_data/HighsLpUtils.h +23 -12
  67. casadi/include/highs/lp_data/HighsModelUtils.h +22 -8
  68. casadi/include/highs/lp_data/HighsOptions.h +175 -106
  69. casadi/include/highs/lp_data/HighsRanging.h +2 -4
  70. casadi/include/highs/lp_data/HighsRuntimeOptions.h +21 -6
  71. casadi/include/highs/lp_data/HighsSolution.h +4 -4
  72. casadi/include/highs/lp_data/HighsSolutionDebug.h +2 -4
  73. casadi/include/highs/lp_data/HighsSolve.h +2 -4
  74. casadi/include/highs/lp_data/HighsStatus.h +2 -4
  75. casadi/include/highs/mip/HighsCliqueTable.h +18 -20
  76. casadi/include/highs/mip/HighsConflictPool.h +2 -4
  77. casadi/include/highs/mip/HighsCutGeneration.h +2 -4
  78. casadi/include/highs/mip/HighsCutPool.h +2 -4
  79. casadi/include/highs/mip/HighsDebugSol.h +2 -4
  80. casadi/include/highs/mip/HighsDomain.h +5 -5
  81. casadi/include/highs/mip/HighsDomainChange.h +2 -4
  82. casadi/include/highs/mip/HighsDynamicRowMatrix.h +2 -4
  83. casadi/include/highs/mip/HighsGFkSolve.h +2 -4
  84. casadi/include/highs/mip/HighsImplications.h +2 -4
  85. casadi/include/highs/mip/HighsLpAggregator.h +2 -4
  86. casadi/include/highs/mip/HighsLpRelaxation.h +2 -4
  87. casadi/include/highs/mip/HighsMipSolver.h +18 -6
  88. casadi/include/highs/mip/HighsMipSolverData.h +8 -4
  89. casadi/include/highs/mip/HighsModkSeparator.h +2 -4
  90. casadi/include/highs/mip/HighsNodeQueue.h +3 -9
  91. casadi/include/highs/mip/HighsObjectiveFunction.h +2 -4
  92. casadi/include/highs/mip/HighsPathSeparator.h +2 -4
  93. casadi/include/highs/mip/HighsPrimalHeuristics.h +2 -4
  94. casadi/include/highs/mip/HighsPseudocost.h +2 -4
  95. casadi/include/highs/mip/HighsRedcostFixing.h +2 -4
  96. casadi/include/highs/mip/HighsSearch.h +2 -4
  97. casadi/include/highs/mip/HighsSeparation.h +2 -4
  98. casadi/include/highs/mip/HighsSeparator.h +2 -4
  99. casadi/include/highs/mip/HighsTableauSeparator.h +2 -4
  100. casadi/include/highs/mip/HighsTransformedLp.h +2 -4
  101. casadi/include/highs/model/HighsHessian.h +3 -1
  102. casadi/include/highs/model/HighsModel.h +2 -0
  103. casadi/include/highs/parallel/HighsSpinMutex.h +2 -1
  104. casadi/include/highs/parallel/HighsSplitDeque.h +1 -1
  105. casadi/include/highs/parallel/HighsTaskExecutor.h +10 -2
  106. casadi/include/highs/presolve/HPresolve.h +9 -6
  107. casadi/include/highs/presolve/HPresolveAnalysis.h +5 -4
  108. casadi/include/highs/presolve/HighsPostsolveStack.h +50 -13
  109. casadi/include/highs/presolve/HighsSymmetry.h +2 -4
  110. casadi/include/highs/presolve/ICrash.h +4 -3
  111. casadi/include/highs/presolve/ICrashUtil.h +2 -2
  112. casadi/include/highs/presolve/ICrashX.h +4 -6
  113. casadi/include/highs/presolve/PresolveComponent.h +4 -42
  114. casadi/include/highs/qpsolver/a_asm.hpp +56 -0
  115. casadi/include/highs/qpsolver/a_quass.hpp +12 -0
  116. casadi/include/highs/qpsolver/quass.hpp +1 -4
  117. casadi/include/highs/simplex/HApp.h +14 -16
  118. casadi/include/highs/simplex/HEkk.h +12 -11
  119. casadi/include/highs/simplex/HEkkDual.h +2 -4
  120. casadi/include/highs/simplex/HEkkDualRHS.h +5 -6
  121. casadi/include/highs/simplex/HEkkDualRow.h +2 -4
  122. casadi/include/highs/simplex/HEkkPrimal.h +2 -4
  123. casadi/include/highs/simplex/HSimplex.h +2 -4
  124. casadi/include/highs/simplex/HSimplexDebug.h +2 -4
  125. casadi/include/highs/simplex/HSimplexNla.h +2 -4
  126. casadi/include/highs/simplex/HSimplexReport.h +3 -5
  127. casadi/include/highs/simplex/HighsSimplexAnalysis.h +2 -4
  128. casadi/include/highs/simplex/SimplexConst.h +7 -5
  129. casadi/include/highs/simplex/SimplexStruct.h +11 -5
  130. casadi/include/highs/simplex/SimplexTimer.h +2 -4
  131. casadi/include/highs/test/DevKkt.h +2 -4
  132. casadi/include/highs/test/KktCh2.h +2 -4
  133. casadi/include/highs/util/FactorTimer.h +2 -4
  134. casadi/include/highs/util/HFactor.h +2 -4
  135. casadi/include/highs/util/HFactorConst.h +2 -4
  136. casadi/include/highs/util/HFactorDebug.h +2 -4
  137. casadi/include/highs/util/HSet.h +3 -5
  138. casadi/include/highs/util/HVector.h +2 -4
  139. casadi/include/highs/util/HVectorBase.h +2 -4
  140. casadi/include/highs/util/HighsCDouble.h +2 -4
  141. casadi/include/highs/util/HighsComponent.h +2 -4
  142. casadi/include/highs/util/HighsDataStack.h +3 -5
  143. casadi/include/highs/util/HighsDisjointSets.h +8 -10
  144. casadi/include/highs/util/HighsHash.h +22 -7
  145. casadi/include/highs/util/HighsHashTree.h +25 -7
  146. casadi/include/highs/util/HighsInt.h +2 -4
  147. casadi/include/highs/util/HighsIntegers.h +2 -4
  148. casadi/include/highs/util/HighsLinearSumBounds.h +2 -4
  149. casadi/include/highs/util/HighsMatrixPic.h +2 -4
  150. casadi/include/highs/util/HighsMatrixSlice.h +2 -4
  151. casadi/include/highs/util/HighsMatrixUtils.h +2 -4
  152. casadi/include/highs/util/HighsRandom.h +2 -4
  153. casadi/include/highs/util/HighsRbTree.h +2 -4
  154. casadi/include/highs/util/HighsSort.h +2 -4
  155. casadi/include/highs/util/HighsSparseMatrix.h +11 -7
  156. casadi/include/highs/util/HighsSparseVectorSum.h +2 -4
  157. casadi/include/highs/util/HighsSplay.h +2 -4
  158. casadi/include/highs/util/HighsTimer.h +3 -4
  159. casadi/include/highs/util/HighsUtils.h +14 -4
  160. casadi/include/highs/util/stringutil.h +2 -4
  161. casadi/include/include/alpaqa/accelerators/anderson.hpp +133 -0
  162. casadi/include/include/alpaqa/accelerators/internal/anderson-helpers.hpp +92 -0
  163. casadi/include/include/alpaqa/accelerators/internal/limited-memory-qr.hpp +295 -0
  164. casadi/include/include/alpaqa/accelerators/lbfgs.hpp +244 -0
  165. casadi/include/include/alpaqa/accelerators/steihaugcg.hpp +143 -0
  166. casadi/include/include/alpaqa/alpaqa.hpp +3 -0
  167. casadi/include/include/alpaqa/casadi/CasADiControlProblem.hpp +185 -0
  168. casadi/include/include/alpaqa/casadi/CasADiFunctionWrapper.hpp +104 -0
  169. casadi/include/include/alpaqa/casadi/CasADiProblem.hpp +102 -0
  170. casadi/include/include/alpaqa/casadi-loader-export.hpp +15 -0
  171. casadi/include/include/alpaqa/casadi-ocp-loader-export.hpp +15 -0
  172. casadi/include/include/alpaqa/config/config.hpp +165 -0
  173. casadi/include/include/alpaqa/dl/dl-problem.h +476 -0
  174. casadi/include/include/alpaqa/dl/dl-problem.hpp +301 -0
  175. casadi/include/include/alpaqa/export.h +42 -0
  176. casadi/include/include/alpaqa/export.hpp +30 -0
  177. casadi/include/include/alpaqa/implementation/accelerators/lbfgs.tpp +240 -0
  178. casadi/include/include/alpaqa/implementation/casadi/CasADiControlProblem.tpp +594 -0
  179. casadi/include/include/alpaqa/implementation/casadi/CasADiLoader-util.hpp +50 -0
  180. casadi/include/include/alpaqa/implementation/casadi/CasADiProblem.tpp +425 -0
  181. casadi/include/include/alpaqa/implementation/inner/directions/panoc/structured-lbfgs.tpp +164 -0
  182. casadi/include/include/alpaqa/implementation/inner/panoc-helpers.tpp +389 -0
  183. casadi/include/include/alpaqa/implementation/inner/panoc-ocp.tpp +798 -0
  184. casadi/include/include/alpaqa/implementation/inner/panoc.tpp +448 -0
  185. casadi/include/include/alpaqa/implementation/inner/pantr.tpp +474 -0
  186. casadi/include/include/alpaqa/implementation/inner/zerofpr.tpp +482 -0
  187. casadi/include/include/alpaqa/implementation/outer/alm.tpp +228 -0
  188. casadi/include/include/alpaqa/implementation/outer/internal/alm-helpers.tpp +80 -0
  189. casadi/include/include/alpaqa/implementation/params/params.tpp +158 -0
  190. casadi/include/include/alpaqa/implementation/problem/ocproblem.tpp +56 -0
  191. casadi/include/include/alpaqa/implementation/problem/type-erased-problem.tpp +211 -0
  192. casadi/include/include/alpaqa/implementation/util/io/csv.tpp +120 -0
  193. casadi/include/include/alpaqa/implementation/util/print.tpp +151 -0
  194. casadi/include/include/alpaqa/inner/directions/panoc/anderson.hpp +98 -0
  195. casadi/include/include/alpaqa/inner/directions/panoc/lbfgs.hpp +94 -0
  196. casadi/include/include/alpaqa/inner/directions/panoc/structured-lbfgs.hpp +146 -0
  197. casadi/include/include/alpaqa/inner/directions/panoc/structured-newton.hpp +264 -0
  198. casadi/include/include/alpaqa/inner/directions/panoc-direction-update.hpp +96 -0
  199. casadi/include/include/alpaqa/inner/directions/panoc-ocp/lqr.hpp +181 -0
  200. casadi/include/include/alpaqa/inner/directions/panoc-ocp/ocp-vars.hpp +492 -0
  201. casadi/include/include/alpaqa/inner/directions/pantr/newton-tr.hpp +192 -0
  202. casadi/include/include/alpaqa/inner/directions/pantr/pantr-direction.hpp +99 -0
  203. casadi/include/include/alpaqa/inner/inner-solve-options.hpp +30 -0
  204. casadi/include/include/alpaqa/inner/internal/lipschitz.hpp +27 -0
  205. casadi/include/include/alpaqa/inner/internal/panoc-helpers.hpp +10 -0
  206. casadi/include/include/alpaqa/inner/internal/panoc-stop-crit.hpp +124 -0
  207. casadi/include/include/alpaqa/inner/internal/solverstatus.hpp +42 -0
  208. casadi/include/include/alpaqa/inner/panoc-ocp.hpp +302 -0
  209. casadi/include/include/alpaqa/inner/panoc.hpp +274 -0
  210. casadi/include/include/alpaqa/inner/pantr.hpp +284 -0
  211. casadi/include/include/alpaqa/inner/zerofpr.hpp +274 -0
  212. casadi/include/include/alpaqa/ipopt/ipopt-adapter.hpp +81 -0
  213. casadi/include/include/alpaqa/ipopt/ipopt-enums.hpp +35 -0
  214. casadi/include/include/alpaqa/lbfgsb/lbfgsb-adapter.hpp +111 -0
  215. casadi/include/include/alpaqa/newton-tr-pantr-alm.hpp +27 -0
  216. casadi/include/include/alpaqa/outer/alm.hpp +190 -0
  217. casadi/include/include/alpaqa/outer/internal/alm-helpers.hpp +10 -0
  218. casadi/include/include/alpaqa/panoc-alm.hpp +27 -0
  219. casadi/include/include/alpaqa/panoc-anderson-alm.hpp +27 -0
  220. casadi/include/include/alpaqa/params/params.hpp +60 -0
  221. casadi/include/include/alpaqa/problem/box-constr-problem.hpp +220 -0
  222. casadi/include/include/alpaqa/problem/box.hpp +82 -0
  223. casadi/include/include/alpaqa/problem/functional-problem.hpp +73 -0
  224. casadi/include/include/alpaqa/problem/kkt-error.hpp +43 -0
  225. casadi/include/include/alpaqa/problem/ocproblem-counters.hpp +116 -0
  226. casadi/include/include/alpaqa/problem/ocproblem.hpp +662 -0
  227. casadi/include/include/alpaqa/problem/problem-counters.hpp +116 -0
  228. casadi/include/include/alpaqa/problem/problem-with-counters.hpp +141 -0
  229. casadi/include/include/alpaqa/problem/type-erased-problem.hpp +874 -0
  230. casadi/include/include/alpaqa/problem/unconstr-problem.hpp +37 -0
  231. casadi/include/include/alpaqa/structured-panoc-alm.hpp +27 -0
  232. casadi/include/include/alpaqa/structured-zerofpr-alm.hpp +27 -0
  233. casadi/include/include/alpaqa/util/alloc-check.hpp +23 -0
  234. casadi/include/include/alpaqa/util/atomic-stop-signal.hpp +24 -0
  235. casadi/include/include/alpaqa/util/check-dim.hpp +64 -0
  236. casadi/include/include/alpaqa/util/copyable_unique_ptr.hpp +32 -0
  237. casadi/include/include/alpaqa/util/demangled-typename.hpp +9 -0
  238. casadi/include/include/alpaqa/util/enumerate.hpp +70 -0
  239. casadi/include/include/alpaqa/util/float.hpp +25 -0
  240. casadi/include/include/alpaqa/util/index-set.hpp +97 -0
  241. casadi/include/include/alpaqa/util/io/csv.hpp +43 -0
  242. casadi/include/include/alpaqa/util/iter-adapter.hpp +68 -0
  243. casadi/include/include/alpaqa/util/max-history.hpp +47 -0
  244. casadi/include/include/alpaqa/util/noop-delete.hpp +15 -0
  245. casadi/include/include/alpaqa/util/not-implemented.hpp +12 -0
  246. casadi/include/include/alpaqa/util/print.hpp +78 -0
  247. casadi/include/include/alpaqa/util/quadmath/quadmath-print.hpp +20 -0
  248. casadi/include/include/alpaqa/util/quadmath/quadmath.hpp +137 -0
  249. casadi/include/include/alpaqa/util/required-method.hpp +29 -0
  250. casadi/include/include/alpaqa/util/ringbuffer.hpp +212 -0
  251. casadi/include/include/alpaqa/util/set-intersection.hpp +129 -0
  252. casadi/include/include/alpaqa/util/sparse-ops.hpp +164 -0
  253. casadi/include/include/alpaqa/util/timed.hpp +22 -0
  254. casadi/include/include/alpaqa/util/type-erasure.hpp +568 -0
  255. casadi/include/include/alpaqa/util/type-traits.hpp +58 -0
  256. casadi/include/include/alpaqa/zerofpr-alm.hpp +27 -0
  257. casadi/include/include/alpaqa/zerofpr-anderson-alm.hpp +27 -0
  258. casadi/include/include/alpaqa-version.h +8 -0
  259. casadi/include/include/coin/BonArraysHelpers.hpp +52 -0
  260. casadi/include/include/coin/BonAuxInfos.hpp +110 -0
  261. casadi/include/include/coin/BonBabInfos.hpp +57 -0
  262. casadi/include/include/coin/BonBabSetupBase.hpp +386 -0
  263. casadi/include/include/coin/BonBonminSetup.hpp +95 -0
  264. casadi/include/include/coin/BonBranchingTQP.hpp +197 -0
  265. casadi/include/include/coin/BonCbc.hpp +127 -0
  266. casadi/include/include/coin/BonCbcLpStrategy.hpp +45 -0
  267. casadi/include/include/coin/BonCbcNlpStrategy.hpp +98 -0
  268. casadi/include/include/coin/BonCbcNode.hpp +133 -0
  269. casadi/include/include/coin/BonChooseVariable.hpp +345 -0
  270. casadi/include/include/coin/BonCurvBranchingSolver.hpp +77 -0
  271. casadi/include/include/coin/BonCutStrengthener.hpp +244 -0
  272. casadi/include/include/coin/BonDiver.hpp +424 -0
  273. casadi/include/include/coin/BonDummyHeuristic.hpp +53 -0
  274. casadi/include/include/coin/BonDummyPump.hpp +43 -0
  275. casadi/include/include/coin/BonEcpCuts.hpp +97 -0
  276. casadi/include/include/coin/BonExitCodes.hpp +12 -0
  277. casadi/include/include/coin/BonFixAndSolveHeuristic.hpp +43 -0
  278. casadi/include/include/coin/BonGuessHeuristic.hpp +46 -0
  279. casadi/include/include/coin/BonHeuristicDive.hpp +88 -0
  280. casadi/include/include/coin/BonHeuristicDiveFractional.hpp +67 -0
  281. casadi/include/include/coin/BonHeuristicDiveMIP.hpp +83 -0
  282. casadi/include/include/coin/BonHeuristicDiveMIPFractional.hpp +67 -0
  283. casadi/include/include/coin/BonHeuristicDiveMIPVectorLength.hpp +74 -0
  284. casadi/include/include/coin/BonHeuristicDiveVectorLength.hpp +74 -0
  285. casadi/include/include/coin/BonHeuristicFPump.hpp +111 -0
  286. casadi/include/include/coin/BonHeuristicLocalBranching.hpp +59 -0
  287. casadi/include/include/coin/BonHeuristicRINS.hpp +55 -0
  288. casadi/include/include/coin/BonIpoptInteriorWarmStarter.hpp +103 -0
  289. casadi/include/include/coin/BonIpoptSolver.hpp +188 -0
  290. casadi/include/include/coin/BonIpoptWarmStart.hpp +148 -0
  291. casadi/include/include/coin/BonLinearCutsGenerator.hpp +75 -0
  292. casadi/include/include/coin/BonLocalSolverBasedHeuristic.hpp +102 -0
  293. casadi/include/include/coin/BonLpBranchingSolver.hpp +80 -0
  294. casadi/include/include/coin/BonMilpRounding.hpp +74 -0
  295. casadi/include/include/coin/BonOACutGenerator2.hpp +56 -0
  296. casadi/include/include/coin/BonOAMessages.hpp +44 -0
  297. casadi/include/include/coin/BonOaDecBase.hpp +297 -0
  298. casadi/include/include/coin/BonOaFeasChecker.hpp +73 -0
  299. casadi/include/include/coin/BonOaNlpOptim.hpp +116 -0
  300. casadi/include/include/coin/BonOsiTMINLPInterface.hpp +1342 -0
  301. casadi/include/include/coin/BonOuterApprox.hpp +123 -0
  302. casadi/include/include/coin/BonPseudoCosts.hpp +91 -0
  303. casadi/include/include/coin/BonPumpForMinlp.hpp +45 -0
  304. casadi/include/include/coin/BonQuadCut.hpp +217 -0
  305. casadi/include/include/coin/BonQuadRow.hpp +122 -0
  306. casadi/include/include/coin/BonRegisteredOptions.hpp +225 -0
  307. casadi/include/include/coin/BonStrongBranchingSolver.hpp +69 -0
  308. casadi/include/include/coin/BonSubMipSolver.hpp +143 -0
  309. casadi/include/include/coin/BonTMINLP.hpp +420 -0
  310. casadi/include/include/coin/BonTMINLP2OsiLP.hpp +164 -0
  311. casadi/include/include/coin/BonTMINLP2Quad.hpp +191 -0
  312. casadi/include/include/coin/BonTMINLP2TNLP.hpp +509 -0
  313. casadi/include/include/coin/BonTMINLPLinObj.hpp +216 -0
  314. casadi/include/include/coin/BonTMatrix.hpp +167 -0
  315. casadi/include/include/coin/BonTNLP2FPNLP.hpp +264 -0
  316. casadi/include/include/coin/BonTNLPSolver.hpp +241 -0
  317. casadi/include/include/coin/BonTypes.hpp +95 -0
  318. casadi/include/include/coin/BonminConfig.h +19 -0
  319. casadi/include/include/coin/CbcBranchActual.hpp +26 -0
  320. casadi/include/include/coin/CbcBranchAllDifferent.hpp +61 -0
  321. casadi/include/include/coin/CbcBranchBase.hpp +79 -0
  322. casadi/include/include/coin/CbcBranchCut.hpp +182 -0
  323. casadi/include/include/coin/CbcBranchDecision.hpp +135 -0
  324. casadi/include/include/coin/CbcBranchDefaultDecision.hpp +101 -0
  325. casadi/include/include/coin/CbcBranchDynamic.hpp +210 -0
  326. casadi/include/include/coin/CbcBranchLotsize.hpp +249 -0
  327. casadi/include/include/coin/CbcBranchToFixLots.hpp +94 -0
  328. casadi/include/include/coin/CbcBranchingObject.hpp +245 -0
  329. casadi/include/include/coin/CbcClique.hpp +309 -0
  330. casadi/include/include/coin/CbcCompare.hpp +46 -0
  331. casadi/include/include/coin/CbcCompareActual.hpp +16 -0
  332. casadi/include/include/coin/CbcCompareBase.hpp +155 -0
  333. casadi/include/include/coin/CbcCompareDefault.hpp +129 -0
  334. casadi/include/include/coin/CbcCompareDepth.hpp +48 -0
  335. casadi/include/include/coin/CbcCompareEstimate.hpp +48 -0
  336. casadi/include/include/coin/CbcCompareObjective.hpp +50 -0
  337. casadi/include/include/coin/CbcConfig.h +18 -0
  338. casadi/include/include/coin/CbcConsequence.hpp +50 -0
  339. casadi/include/include/coin/CbcCountRowCut.hpp +176 -0
  340. casadi/include/include/coin/CbcCutGenerator.hpp +550 -0
  341. casadi/include/include/coin/CbcCutModifier.hpp +59 -0
  342. casadi/include/include/coin/CbcCutSubsetModifier.hpp +69 -0
  343. casadi/include/include/coin/CbcDummyBranchingObject.hpp +83 -0
  344. casadi/include/include/coin/CbcEventHandler.hpp +250 -0
  345. casadi/include/include/coin/CbcFathom.hpp +136 -0
  346. casadi/include/include/coin/CbcFathomDynamicProgramming.hpp +177 -0
  347. casadi/include/include/coin/CbcFeasibilityBase.hpp +60 -0
  348. casadi/include/include/coin/CbcFixVariable.hpp +68 -0
  349. casadi/include/include/coin/CbcFollowOn.hpp +207 -0
  350. casadi/include/include/coin/CbcFullNodeInfo.hpp +171 -0
  351. casadi/include/include/coin/CbcGeneral.hpp +60 -0
  352. casadi/include/include/coin/CbcGeneralDepth.hpp +289 -0
  353. casadi/include/include/coin/CbcHeuristic.hpp +735 -0
  354. casadi/include/include/coin/CbcHeuristicDINS.hpp +98 -0
  355. casadi/include/include/coin/CbcHeuristicDW.hpp +374 -0
  356. casadi/include/include/coin/CbcHeuristicDive.hpp +198 -0
  357. casadi/include/include/coin/CbcHeuristicDiveCoefficient.hpp +52 -0
  358. casadi/include/include/coin/CbcHeuristicDiveFractional.hpp +52 -0
  359. casadi/include/include/coin/CbcHeuristicDiveGuided.hpp +55 -0
  360. casadi/include/include/coin/CbcHeuristicDiveLineSearch.hpp +52 -0
  361. casadi/include/include/coin/CbcHeuristicDivePseudoCost.hpp +60 -0
  362. casadi/include/include/coin/CbcHeuristicDiveVectorLength.hpp +52 -0
  363. casadi/include/include/coin/CbcHeuristicFPump.hpp +375 -0
  364. casadi/include/include/coin/CbcHeuristicGreedy.hpp +289 -0
  365. casadi/include/include/coin/CbcHeuristicLocal.hpp +276 -0
  366. casadi/include/include/coin/CbcHeuristicPivotAndFix.hpp +58 -0
  367. casadi/include/include/coin/CbcHeuristicRENS.hpp +79 -0
  368. casadi/include/include/coin/CbcHeuristicRINS.hpp +106 -0
  369. casadi/include/include/coin/CbcHeuristicRandRound.hpp +58 -0
  370. casadi/include/include/coin/CbcHeuristicVND.hpp +95 -0
  371. casadi/include/include/coin/CbcLinked.hpp +1443 -0
  372. casadi/include/include/coin/CbcMessage.hpp +94 -0
  373. casadi/include/include/coin/CbcMipStartIO.hpp +29 -0
  374. casadi/include/include/coin/CbcModel.hpp +3296 -0
  375. casadi/include/include/coin/CbcNWay.hpp +171 -0
  376. casadi/include/include/coin/CbcNode.hpp +380 -0
  377. casadi/include/include/coin/CbcNodeInfo.hpp +377 -0
  378. casadi/include/include/coin/CbcObject.hpp +288 -0
  379. casadi/include/include/coin/CbcObjectUpdateData.hpp +63 -0
  380. casadi/include/include/coin/CbcOrClpParam.cpp +4321 -0
  381. casadi/include/include/coin/CbcOrClpParam.hpp +585 -0
  382. casadi/include/include/coin/CbcParam.hpp +338 -0
  383. casadi/include/include/coin/CbcPartialNodeInfo.hpp +116 -0
  384. casadi/include/include/coin/CbcSOS.hpp +290 -0
  385. casadi/include/include/coin/CbcSimpleInteger.hpp +299 -0
  386. casadi/include/include/coin/CbcSimpleIntegerDynamicPseudoCost.hpp +619 -0
  387. casadi/include/include/coin/CbcSimpleIntegerPseudoCost.hpp +122 -0
  388. casadi/include/include/coin/CbcSolver.hpp +460 -0
  389. casadi/include/include/coin/CbcStrategy.hpp +269 -0
  390. casadi/include/include/coin/CbcSubProblem.hpp +84 -0
  391. casadi/include/include/coin/CbcTree.hpp +493 -0
  392. casadi/include/include/coin/CbcTreeLocal.hpp +393 -0
  393. casadi/include/include/coin/Cbc_C_Interface.h +904 -0
  394. casadi/include/include/coin/Cgl012cut.hpp +464 -0
  395. casadi/include/include/coin/CglAllDifferent.hpp +115 -0
  396. casadi/include/include/coin/CglClique.hpp +312 -0
  397. casadi/include/include/coin/CglConfig.h +19 -0
  398. casadi/include/include/coin/CglCutGenerator.hpp +133 -0
  399. casadi/include/include/coin/CglDuplicateRow.hpp +189 -0
  400. casadi/include/include/coin/CglFlowCover.hpp +371 -0
  401. casadi/include/include/coin/CglGMI.hpp +364 -0
  402. casadi/include/include/coin/CglGMIParam.hpp +313 -0
  403. casadi/include/include/coin/CglGomory.hpp +204 -0
  404. casadi/include/include/coin/CglKnapsackCover.hpp +310 -0
  405. casadi/include/include/coin/CglLandP.hpp +306 -0
  406. casadi/include/include/coin/CglLandPValidator.hpp +130 -0
  407. casadi/include/include/coin/CglLiftAndProject.hpp +104 -0
  408. casadi/include/include/coin/CglMessage.hpp +49 -0
  409. casadi/include/include/coin/CglMixedIntegerRounding.hpp +429 -0
  410. casadi/include/include/coin/CglMixedIntegerRounding2.hpp +427 -0
  411. casadi/include/include/coin/CglOddHole.hpp +160 -0
  412. casadi/include/include/coin/CglParam.hpp +93 -0
  413. casadi/include/include/coin/CglPreProcess.hpp +600 -0
  414. casadi/include/include/coin/CglProbing.hpp +543 -0
  415. casadi/include/include/coin/CglRedSplit.hpp +448 -0
  416. casadi/include/include/coin/CglRedSplit2.hpp +494 -0
  417. casadi/include/include/coin/CglRedSplit2Param.hpp +495 -0
  418. casadi/include/include/coin/CglRedSplitParam.hpp +272 -0
  419. casadi/include/include/coin/CglResidualCapacity.hpp +240 -0
  420. casadi/include/include/coin/CglSimpleRounding.hpp +174 -0
  421. casadi/include/include/coin/CglStored.hpp +140 -0
  422. casadi/include/include/coin/CglTreeInfo.hpp +216 -0
  423. casadi/include/include/coin/CglTwomir.hpp +562 -0
  424. casadi/include/include/coin/CglZeroHalf.hpp +133 -0
  425. casadi/include/include/coin/ClpAmplObjective.hpp +113 -0
  426. casadi/include/include/coin/ClpCholeskyBase.hpp +321 -0
  427. casadi/include/include/coin/ClpCholeskyDense.hpp +157 -0
  428. casadi/include/include/coin/ClpCholeskyMumps.hpp +65 -0
  429. casadi/include/include/coin/ClpCholeskyPardiso.hpp +67 -0
  430. casadi/include/include/coin/ClpConfig.h +17 -0
  431. casadi/include/include/coin/ClpConstraint.hpp +129 -0
  432. casadi/include/include/coin/ClpConstraintAmpl.hpp +109 -0
  433. casadi/include/include/coin/ClpConstraintLinear.hpp +113 -0
  434. casadi/include/include/coin/ClpConstraintQuadratic.hpp +123 -0
  435. casadi/include/include/coin/ClpDualRowDantzig.hpp +72 -0
  436. casadi/include/include/coin/ClpDualRowPivot.hpp +136 -0
  437. casadi/include/include/coin/ClpDualRowSteepest.hpp +160 -0
  438. casadi/include/include/coin/ClpDummyMatrix.hpp +186 -0
  439. casadi/include/include/coin/ClpDynamicExampleMatrix.hpp +199 -0
  440. casadi/include/include/coin/ClpDynamicMatrix.hpp +420 -0
  441. casadi/include/include/coin/ClpEventHandler.hpp +193 -0
  442. casadi/include/include/coin/ClpFactorization.hpp +556 -0
  443. casadi/include/include/coin/ClpGubDynamicMatrix.hpp +270 -0
  444. casadi/include/include/coin/ClpGubMatrix.hpp +373 -0
  445. casadi/include/include/coin/ClpInterior.hpp +622 -0
  446. casadi/include/include/coin/ClpLinearObjective.hpp +104 -0
  447. casadi/include/include/coin/ClpMatrixBase.hpp +561 -0
  448. casadi/include/include/coin/ClpMessage.hpp +131 -0
  449. casadi/include/include/coin/ClpModel.hpp +1442 -0
  450. casadi/include/include/coin/ClpNetworkMatrix.hpp +235 -0
  451. casadi/include/include/coin/ClpNode.hpp +364 -0
  452. casadi/include/include/coin/ClpNonLinearCost.hpp +432 -0
  453. casadi/include/include/coin/ClpObjective.hpp +142 -0
  454. casadi/include/include/coin/ClpPEDualRowDantzig.hpp +84 -0
  455. casadi/include/include/coin/ClpPEDualRowSteepest.hpp +100 -0
  456. casadi/include/include/coin/ClpPEPrimalColumnDantzig.hpp +71 -0
  457. casadi/include/include/coin/ClpPEPrimalColumnSteepest.hpp +107 -0
  458. casadi/include/include/coin/ClpPESimplex.hpp +231 -0
  459. casadi/include/include/coin/ClpPackedMatrix.hpp +778 -0
  460. casadi/include/include/coin/ClpParameters.hpp +132 -0
  461. casadi/include/include/coin/ClpPdcoBase.hpp +110 -0
  462. casadi/include/include/coin/ClpPlusMinusOneMatrix.hpp +565 -0
  463. casadi/include/include/coin/ClpPresolve.hpp +379 -0
  464. casadi/include/include/coin/ClpPrimalColumnDantzig.hpp +74 -0
  465. casadi/include/include/coin/ClpPrimalColumnPivot.hpp +163 -0
  466. casadi/include/include/coin/ClpPrimalColumnSteepest.hpp +281 -0
  467. casadi/include/include/coin/ClpQuadraticObjective.hpp +161 -0
  468. casadi/include/include/coin/ClpSimplex.hpp +2137 -0
  469. casadi/include/include/coin/ClpSimplexDual.hpp +304 -0
  470. casadi/include/include/coin/ClpSimplexNonlinear.hpp +117 -0
  471. casadi/include/include/coin/ClpSimplexOther.hpp +282 -0
  472. casadi/include/include/coin/ClpSimplexPrimal.hpp +244 -0
  473. casadi/include/include/coin/ClpSolve.hpp +505 -0
  474. casadi/include/include/coin/Clp_C_Interface.h +554 -0
  475. casadi/include/include/coin/CoinAlloc.hpp +179 -0
  476. casadi/include/include/coin/CoinBuild.hpp +159 -0
  477. casadi/include/include/coin/CoinDenseFactorization.hpp +452 -0
  478. casadi/include/include/coin/CoinDenseVector.hpp +401 -0
  479. casadi/include/include/coin/CoinDistance.hpp +51 -0
  480. casadi/include/include/coin/CoinError.hpp +274 -0
  481. casadi/include/include/coin/CoinFactorization.hpp +2178 -0
  482. casadi/include/include/coin/CoinFileIO.hpp +185 -0
  483. casadi/include/include/coin/CoinFinite.hpp +37 -0
  484. casadi/include/include/coin/CoinFloatEqual.hpp +204 -0
  485. casadi/include/include/coin/CoinHelperFunctions.hpp +1270 -0
  486. casadi/include/include/coin/CoinIndexedVector.hpp +1437 -0
  487. casadi/include/include/coin/CoinLpIO.hpp +836 -0
  488. casadi/include/include/coin/CoinMessage.hpp +95 -0
  489. casadi/include/include/coin/CoinMessageHandler.hpp +717 -0
  490. casadi/include/include/coin/CoinModel.hpp +1214 -0
  491. casadi/include/include/coin/CoinModelUseful.hpp +518 -0
  492. casadi/include/include/coin/CoinMpsIO.hpp +1142 -0
  493. casadi/include/include/coin/CoinOslFactorization.hpp +287 -0
  494. casadi/include/include/coin/CoinPackedMatrix.hpp +956 -0
  495. casadi/include/include/coin/CoinPackedVector.hpp +670 -0
  496. casadi/include/include/coin/CoinPackedVectorBase.hpp +274 -0
  497. casadi/include/include/coin/CoinParam.hpp +644 -0
  498. casadi/include/include/coin/CoinPragma.hpp +29 -0
  499. casadi/include/include/coin/CoinPresolveDoubleton.hpp +76 -0
  500. casadi/include/include/coin/CoinPresolveDual.hpp +84 -0
  501. casadi/include/include/coin/CoinPresolveDupcol.hpp +259 -0
  502. casadi/include/include/coin/CoinPresolveEmpty.hpp +120 -0
  503. casadi/include/include/coin/CoinPresolveFixed.hpp +185 -0
  504. casadi/include/include/coin/CoinPresolveForcing.hpp +69 -0
  505. casadi/include/include/coin/CoinPresolveImpliedFree.hpp +66 -0
  506. casadi/include/include/coin/CoinPresolveIsolated.hpp +59 -0
  507. casadi/include/include/coin/CoinPresolveMatrix.hpp +1996 -0
  508. casadi/include/include/coin/CoinPresolveMonitor.hpp +105 -0
  509. casadi/include/include/coin/CoinPresolvePsdebug.hpp +169 -0
  510. casadi/include/include/coin/CoinPresolveSingleton.hpp +115 -0
  511. casadi/include/include/coin/CoinPresolveSubst.hpp +103 -0
  512. casadi/include/include/coin/CoinPresolveTighten.hpp +58 -0
  513. casadi/include/include/coin/CoinPresolveTripleton.hpp +69 -0
  514. casadi/include/include/coin/CoinPresolveUseless.hpp +63 -0
  515. casadi/include/include/coin/CoinPresolveZeros.hpp +65 -0
  516. casadi/include/include/coin/CoinRational.hpp +43 -0
  517. casadi/include/include/coin/CoinSearchTree.hpp +523 -0
  518. casadi/include/include/coin/CoinShallowPackedVector.hpp +149 -0
  519. casadi/include/include/coin/CoinSignal.hpp +127 -0
  520. casadi/include/include/coin/CoinSimpFactorization.hpp +432 -0
  521. casadi/include/include/coin/CoinSmartPtr.hpp +548 -0
  522. casadi/include/include/coin/CoinSnapshot.hpp +572 -0
  523. casadi/include/include/coin/CoinSort.hpp +753 -0
  524. casadi/include/include/coin/CoinStructuredModel.hpp +270 -0
  525. casadi/include/include/coin/CoinTime.hpp +350 -0
  526. casadi/include/include/coin/CoinTypes.hpp +67 -0
  527. casadi/include/include/coin/CoinUtility.hpp +26 -0
  528. casadi/include/include/coin/CoinUtilsConfig.h +34 -0
  529. casadi/include/include/coin/CoinWarmStart.hpp +56 -0
  530. casadi/include/include/coin/CoinWarmStartBasis.hpp +468 -0
  531. casadi/include/include/coin/CoinWarmStartDual.hpp +180 -0
  532. casadi/include/include/coin/CoinWarmStartPrimalDual.hpp +233 -0
  533. casadi/include/include/coin/CoinWarmStartVector.hpp +523 -0
  534. casadi/include/include/coin/Coin_C_defines.h +149 -0
  535. casadi/include/include/coin/Idiot.hpp +327 -0
  536. casadi/include/include/coin/OsiAuxInfo.hpp +261 -0
  537. casadi/include/include/coin/OsiBranchingObject.hpp +1097 -0
  538. casadi/include/include/coin/OsiCbcSolverInterface.hpp +791 -0
  539. casadi/include/include/coin/OsiChooseVariable.hpp +645 -0
  540. casadi/include/include/coin/OsiClpSolverInterface.hpp +1604 -0
  541. casadi/include/include/coin/OsiColCut.hpp +322 -0
  542. casadi/include/include/coin/OsiCollections.hpp +34 -0
  543. casadi/include/include/coin/OsiConfig.h +19 -0
  544. casadi/include/include/coin/OsiCut.hpp +251 -0
  545. casadi/include/include/coin/OsiCuts.hpp +505 -0
  546. casadi/include/include/coin/OsiPresolve.hpp +272 -0
  547. casadi/include/include/coin/OsiRowCut.hpp +345 -0
  548. casadi/include/include/coin/OsiRowCutDebugger.hpp +190 -0
  549. casadi/include/include/coin/OsiSolverBranch.hpp +169 -0
  550. casadi/include/include/coin/OsiSolverInterface.hpp +2221 -0
  551. casadi/include/include/coin/OsiSolverParameters.hpp +144 -0
  552. casadi/include/include/coin/OsiUnitTests.hpp +390 -0
  553. casadi/include/include/coin-or/IpAlgBuilder.hpp +417 -0
  554. casadi/include/include/coin-or/IpAlgStrategy.hpp +201 -0
  555. casadi/include/include/coin-or/IpAlgTypes.hpp +64 -0
  556. casadi/include/include/coin-or/IpAugSystemSolver.hpp +212 -0
  557. casadi/include/include/coin-or/IpBlas.hpp +426 -0
  558. casadi/include/include/coin-or/IpCachedResults.hpp +897 -0
  559. casadi/include/include/coin-or/IpCompoundMatrix.hpp +423 -0
  560. casadi/include/include/coin-or/IpCompoundSymMatrix.hpp +348 -0
  561. casadi/include/include/coin-or/IpCompoundVector.hpp +395 -0
  562. casadi/include/include/coin-or/IpConvCheck.hpp +97 -0
  563. casadi/include/include/coin-or/IpDebug.hpp +167 -0
  564. casadi/include/include/coin-or/IpDenseVector.hpp +626 -0
  565. casadi/include/include/coin-or/IpDiagMatrix.hpp +158 -0
  566. casadi/include/include/coin-or/IpEqMultCalculator.hpp +76 -0
  567. casadi/include/include/coin-or/IpException.hpp +156 -0
  568. casadi/include/include/coin-or/IpExpansionMatrix.hpp +245 -0
  569. casadi/include/include/coin-or/IpGenTMatrix.hpp +290 -0
  570. casadi/include/include/coin-or/IpHessianUpdater.hpp +73 -0
  571. casadi/include/include/coin-or/IpIdentityMatrix.hpp +167 -0
  572. casadi/include/include/coin-or/IpIpoptAlg.hpp +257 -0
  573. casadi/include/include/coin-or/IpIpoptApplication.hpp +367 -0
  574. casadi/include/include/coin-or/IpIpoptCalculatedQuantities.hpp +1009 -0
  575. casadi/include/include/coin-or/IpIpoptData.hpp +966 -0
  576. casadi/include/include/coin-or/IpIpoptNLP.hpp +328 -0
  577. casadi/include/include/coin-or/IpIterateInitializer.hpp +68 -0
  578. casadi/include/include/coin-or/IpIteratesVector.hpp +840 -0
  579. casadi/include/include/coin-or/IpIterationOutput.hpp +78 -0
  580. casadi/include/include/coin-or/IpJournalist.hpp +573 -0
  581. casadi/include/include/coin-or/IpLapack.hpp +227 -0
  582. casadi/include/include/coin-or/IpLibraryLoader.hpp +76 -0
  583. casadi/include/include/coin-or/IpLineSearch.hpp +106 -0
  584. casadi/include/include/coin-or/IpLinearSolvers.h +46 -0
  585. casadi/include/include/coin-or/IpMatrix.hpp +434 -0
  586. casadi/include/include/coin-or/IpMuUpdate.hpp +77 -0
  587. casadi/include/include/coin-or/IpNLP.hpp +306 -0
  588. casadi/include/include/coin-or/IpNLPScaling.hpp +582 -0
  589. casadi/include/include/coin-or/IpObserver.hpp +422 -0
  590. casadi/include/include/coin-or/IpOptionsList.hpp +412 -0
  591. casadi/include/include/coin-or/IpOrigIpoptNLP.hpp +603 -0
  592. casadi/include/include/coin-or/IpPDSystemSolver.hpp +137 -0
  593. casadi/include/include/coin-or/IpReferenced.hpp +262 -0
  594. casadi/include/include/coin-or/IpRegOptions.hpp +1152 -0
  595. casadi/include/include/coin-or/IpReturnCodes.h +23 -0
  596. casadi/include/include/coin-or/IpReturnCodes.hpp +18 -0
  597. casadi/include/include/coin-or/IpReturnCodes.inc +71 -0
  598. casadi/include/include/coin-or/IpReturnCodes_inc.h +45 -0
  599. casadi/include/include/coin-or/IpScaledMatrix.hpp +291 -0
  600. casadi/include/include/coin-or/IpSearchDirCalculator.hpp +72 -0
  601. casadi/include/include/coin-or/IpSmartPtr.hpp +865 -0
  602. casadi/include/include/coin-or/IpSolveStatistics.hpp +210 -0
  603. casadi/include/include/coin-or/IpSparseSymLinearSolverInterface.hpp +260 -0
  604. casadi/include/include/coin-or/IpStdAugSystemSolver.cpp +555 -0
  605. casadi/include/include/coin-or/IpStdCInterface.h +428 -0
  606. casadi/include/include/coin-or/IpSumSymMatrix.hpp +186 -0
  607. casadi/include/include/coin-or/IpSymLinearSolver.hpp +141 -0
  608. casadi/include/include/coin-or/IpSymMatrix.hpp +167 -0
  609. casadi/include/include/coin-or/IpSymScaledMatrix.hpp +255 -0
  610. casadi/include/include/coin-or/IpSymTMatrix.hpp +275 -0
  611. casadi/include/include/coin-or/IpTNLP.hpp +820 -0
  612. casadi/include/include/coin-or/IpTNLPAdapter.hpp +648 -0
  613. casadi/include/include/coin-or/IpTNLPReducer.hpp +274 -0
  614. casadi/include/include/coin-or/IpTaggedObject.hpp +128 -0
  615. casadi/include/include/coin-or/IpTimedTask.hpp +218 -0
  616. casadi/include/include/coin-or/IpTimingStatistics.hpp +323 -0
  617. casadi/include/include/coin-or/IpTripletHelper.hpp +308 -0
  618. casadi/include/include/coin-or/IpTypes.h +81 -0
  619. casadi/include/include/coin-or/IpTypes.hpp +30 -0
  620. casadi/include/include/coin-or/IpUtils.hpp +166 -0
  621. casadi/include/include/coin-or/IpVector.hpp +892 -0
  622. casadi/include/include/coin-or/IpZeroSymMatrix.hpp +155 -0
  623. casadi/include/include/coin-or/IpoptConfig.h +45 -0
  624. casadi/include/include/coin-or/SensAlgorithm.hpp +114 -0
  625. casadi/include/include/coin-or/SensApplication.hpp +188 -0
  626. casadi/include/include/coin-or/SensBacksolver.hpp +36 -0
  627. casadi/include/include/coin-or/SensMeasurement.hpp +56 -0
  628. casadi/include/include/coin-or/SensPCalculator.hpp +137 -0
  629. casadi/include/include/coin-or/SensRegOp.hpp +21 -0
  630. casadi/include/include/coin-or/SensSchurData.hpp +182 -0
  631. casadi/include/include/coin-or/SensSchurDriver.hpp +118 -0
  632. casadi/include/include/coin-or/SensSimpleBacksolver.hpp +49 -0
  633. casadi/include/include/coin-or/SensStepCalc.hpp +85 -0
  634. casadi/include/include/coin-or/SensUtils.hpp +63 -0
  635. casadi/include/include/coin-or/metis/defs.h +161 -0
  636. casadi/include/include/coin-or/metis/macros.h +143 -0
  637. casadi/include/include/coin-or/metis/metis.h +37 -0
  638. casadi/include/include/coin-or/metis/proto.h +505 -0
  639. casadi/include/include/coin-or/metis/rename.h +418 -0
  640. casadi/include/include/coin-or/metis/struct.h +251 -0
  641. casadi/include/include/coin-or/mumps/dmumps_c.h +142 -0
  642. casadi/include/include/coin-or/mumps/mumps_c_types.h +72 -0
  643. casadi/include/include/coin-or/mumps/mumps_compat.h +27 -0
  644. casadi/include/include/coin-or/mumps/mumps_int_def.h +11 -0
  645. casadi/include/include/coin-or/mumps/mumps_mpi.h +67 -0
  646. casadi/include/include/d_blas.h +78 -0
  647. casadi/include/include/d_blas_64.h +73 -0
  648. casadi/include/include/eigen3/Eigen/Cholesky +45 -0
  649. casadi/include/include/eigen3/Eigen/CholmodSupport +48 -0
  650. casadi/include/include/eigen3/Eigen/Core +384 -0
  651. casadi/include/include/eigen3/Eigen/Dense +7 -0
  652. casadi/include/include/eigen3/Eigen/Eigen +2 -0
  653. casadi/include/include/eigen3/Eigen/Eigenvalues +60 -0
  654. casadi/include/include/eigen3/Eigen/Geometry +59 -0
  655. casadi/include/include/eigen3/Eigen/Householder +29 -0
  656. casadi/include/include/eigen3/Eigen/IterativeLinearSolvers +48 -0
  657. casadi/include/include/eigen3/Eigen/Jacobi +32 -0
  658. casadi/include/include/eigen3/Eigen/KLUSupport +41 -0
  659. casadi/include/include/eigen3/Eigen/LU +47 -0
  660. casadi/include/include/eigen3/Eigen/MetisSupport +35 -0
  661. casadi/include/include/eigen3/Eigen/OrderingMethods +70 -0
  662. casadi/include/include/eigen3/Eigen/PaStiXSupport +49 -0
  663. casadi/include/include/eigen3/Eigen/PardisoSupport +35 -0
  664. casadi/include/include/eigen3/Eigen/QR +50 -0
  665. casadi/include/include/eigen3/Eigen/QtAlignedMalloc +39 -0
  666. casadi/include/include/eigen3/Eigen/SPQRSupport +34 -0
  667. casadi/include/include/eigen3/Eigen/SVD +50 -0
  668. casadi/include/include/eigen3/Eigen/Sparse +34 -0
  669. casadi/include/include/eigen3/Eigen/SparseCholesky +37 -0
  670. casadi/include/include/eigen3/Eigen/SparseCore +69 -0
  671. casadi/include/include/eigen3/Eigen/SparseLU +50 -0
  672. casadi/include/include/eigen3/Eigen/SparseQR +36 -0
  673. casadi/include/include/eigen3/Eigen/StdDeque +27 -0
  674. casadi/include/include/eigen3/Eigen/StdList +26 -0
  675. casadi/include/include/eigen3/Eigen/StdVector +27 -0
  676. casadi/include/include/eigen3/Eigen/SuperLUSupport +64 -0
  677. casadi/include/include/eigen3/Eigen/UmfPackSupport +40 -0
  678. casadi/include/include/eigen3/Eigen/src/Cholesky/LDLT.h +688 -0
  679. casadi/include/include/eigen3/Eigen/src/Cholesky/LLT.h +558 -0
  680. casadi/include/include/eigen3/Eigen/src/Cholesky/LLT_LAPACKE.h +99 -0
  681. casadi/include/include/eigen3/Eigen/src/CholmodSupport/CholmodSupport.h +682 -0
  682. casadi/include/include/eigen3/Eigen/src/Core/ArithmeticSequence.h +413 -0
  683. casadi/include/include/eigen3/Eigen/src/Core/Array.h +417 -0
  684. casadi/include/include/eigen3/Eigen/src/Core/ArrayBase.h +226 -0
  685. casadi/include/include/eigen3/Eigen/src/Core/ArrayWrapper.h +209 -0
  686. casadi/include/include/eigen3/Eigen/src/Core/Assign.h +90 -0
  687. casadi/include/include/eigen3/Eigen/src/Core/AssignEvaluator.h +1010 -0
  688. casadi/include/include/eigen3/Eigen/src/Core/Assign_MKL.h +178 -0
  689. casadi/include/include/eigen3/Eigen/src/Core/BandMatrix.h +353 -0
  690. casadi/include/include/eigen3/Eigen/src/Core/Block.h +448 -0
  691. casadi/include/include/eigen3/Eigen/src/Core/BooleanRedux.h +162 -0
  692. casadi/include/include/eigen3/Eigen/src/Core/CommaInitializer.h +164 -0
  693. casadi/include/include/eigen3/Eigen/src/Core/ConditionEstimator.h +175 -0
  694. casadi/include/include/eigen3/Eigen/src/Core/CoreEvaluators.h +1741 -0
  695. casadi/include/include/eigen3/Eigen/src/Core/CoreIterators.h +132 -0
  696. casadi/include/include/eigen3/Eigen/src/Core/CwiseBinaryOp.h +183 -0
  697. casadi/include/include/eigen3/Eigen/src/Core/CwiseNullaryOp.h +1001 -0
  698. casadi/include/include/eigen3/Eigen/src/Core/CwiseTernaryOp.h +197 -0
  699. casadi/include/include/eigen3/Eigen/src/Core/CwiseUnaryOp.h +103 -0
  700. casadi/include/include/eigen3/Eigen/src/Core/CwiseUnaryView.h +132 -0
  701. casadi/include/include/eigen3/Eigen/src/Core/DenseBase.h +701 -0
  702. casadi/include/include/eigen3/Eigen/src/Core/DenseCoeffsBase.h +685 -0
  703. casadi/include/include/eigen3/Eigen/src/Core/DenseStorage.h +652 -0
  704. casadi/include/include/eigen3/Eigen/src/Core/Diagonal.h +258 -0
  705. casadi/include/include/eigen3/Eigen/src/Core/DiagonalMatrix.h +391 -0
  706. casadi/include/include/eigen3/Eigen/src/Core/DiagonalProduct.h +28 -0
  707. casadi/include/include/eigen3/Eigen/src/Core/Dot.h +318 -0
  708. casadi/include/include/eigen3/Eigen/src/Core/EigenBase.h +160 -0
  709. casadi/include/include/eigen3/Eigen/src/Core/ForceAlignedAccess.h +150 -0
  710. casadi/include/include/eigen3/Eigen/src/Core/Fuzzy.h +155 -0
  711. casadi/include/include/eigen3/Eigen/src/Core/GeneralProduct.h +465 -0
  712. casadi/include/include/eigen3/Eigen/src/Core/GenericPacketMath.h +1040 -0
  713. casadi/include/include/eigen3/Eigen/src/Core/GlobalFunctions.h +194 -0
  714. casadi/include/include/eigen3/Eigen/src/Core/IO.h +258 -0
  715. casadi/include/include/eigen3/Eigen/src/Core/IndexedView.h +237 -0
  716. casadi/include/include/eigen3/Eigen/src/Core/Inverse.h +117 -0
  717. casadi/include/include/eigen3/Eigen/src/Core/Map.h +171 -0
  718. casadi/include/include/eigen3/Eigen/src/Core/MapBase.h +310 -0
  719. casadi/include/include/eigen3/Eigen/src/Core/MathFunctions.h +2057 -0
  720. casadi/include/include/eigen3/Eigen/src/Core/MathFunctionsImpl.h +200 -0
  721. casadi/include/include/eigen3/Eigen/src/Core/Matrix.h +565 -0
  722. casadi/include/include/eigen3/Eigen/src/Core/MatrixBase.h +547 -0
  723. casadi/include/include/eigen3/Eigen/src/Core/NestByValue.h +85 -0
  724. casadi/include/include/eigen3/Eigen/src/Core/NoAlias.h +109 -0
  725. casadi/include/include/eigen3/Eigen/src/Core/NumTraits.h +335 -0
  726. casadi/include/include/eigen3/Eigen/src/Core/PartialReduxEvaluator.h +232 -0
  727. casadi/include/include/eigen3/Eigen/src/Core/PermutationMatrix.h +605 -0
  728. casadi/include/include/eigen3/Eigen/src/Core/PlainObjectBase.h +1128 -0
  729. casadi/include/include/eigen3/Eigen/src/Core/Product.h +191 -0
  730. casadi/include/include/eigen3/Eigen/src/Core/ProductEvaluators.h +1179 -0
  731. casadi/include/include/eigen3/Eigen/src/Core/Random.h +218 -0
  732. casadi/include/include/eigen3/Eigen/src/Core/Redux.h +515 -0
  733. casadi/include/include/eigen3/Eigen/src/Core/Ref.h +381 -0
  734. casadi/include/include/eigen3/Eigen/src/Core/Replicate.h +142 -0
  735. casadi/include/include/eigen3/Eigen/src/Core/Reshaped.h +454 -0
  736. casadi/include/include/eigen3/Eigen/src/Core/ReturnByValue.h +119 -0
  737. casadi/include/include/eigen3/Eigen/src/Core/Reverse.h +217 -0
  738. casadi/include/include/eigen3/Eigen/src/Core/Select.h +164 -0
  739. casadi/include/include/eigen3/Eigen/src/Core/SelfAdjointView.h +365 -0
  740. casadi/include/include/eigen3/Eigen/src/Core/SelfCwiseBinaryOp.h +47 -0
  741. casadi/include/include/eigen3/Eigen/src/Core/Solve.h +188 -0
  742. casadi/include/include/eigen3/Eigen/src/Core/SolveTriangular.h +235 -0
  743. casadi/include/include/eigen3/Eigen/src/Core/SolverBase.h +168 -0
  744. casadi/include/include/eigen3/Eigen/src/Core/StableNorm.h +251 -0
  745. casadi/include/include/eigen3/Eigen/src/Core/StlIterators.h +463 -0
  746. casadi/include/include/eigen3/Eigen/src/Core/Stride.h +116 -0
  747. casadi/include/include/eigen3/Eigen/src/Core/Swap.h +68 -0
  748. casadi/include/include/eigen3/Eigen/src/Core/Transpose.h +464 -0
  749. casadi/include/include/eigen3/Eigen/src/Core/Transpositions.h +386 -0
  750. casadi/include/include/eigen3/Eigen/src/Core/TriangularMatrix.h +1001 -0
  751. casadi/include/include/eigen3/Eigen/src/Core/VectorBlock.h +96 -0
  752. casadi/include/include/eigen3/Eigen/src/Core/VectorwiseOp.h +784 -0
  753. casadi/include/include/eigen3/Eigen/src/Core/Visitor.h +381 -0
  754. casadi/include/include/eigen3/Eigen/src/Core/arch/AVX/Complex.h +372 -0
  755. casadi/include/include/eigen3/Eigen/src/Core/arch/AVX/MathFunctions.h +228 -0
  756. casadi/include/include/eigen3/Eigen/src/Core/arch/AVX/PacketMath.h +1574 -0
  757. casadi/include/include/eigen3/Eigen/src/Core/arch/AVX/TypeCasting.h +115 -0
  758. casadi/include/include/eigen3/Eigen/src/Core/arch/AVX512/Complex.h +422 -0
  759. casadi/include/include/eigen3/Eigen/src/Core/arch/AVX512/MathFunctions.h +362 -0
  760. casadi/include/include/eigen3/Eigen/src/Core/arch/AVX512/PacketMath.h +2303 -0
  761. casadi/include/include/eigen3/Eigen/src/Core/arch/AVX512/TypeCasting.h +89 -0
  762. casadi/include/include/eigen3/Eigen/src/Core/arch/AltiVec/Complex.h +417 -0
  763. casadi/include/include/eigen3/Eigen/src/Core/arch/AltiVec/MathFunctions.h +90 -0
  764. casadi/include/include/eigen3/Eigen/src/Core/arch/AltiVec/MatrixProduct.h +2937 -0
  765. casadi/include/include/eigen3/Eigen/src/Core/arch/AltiVec/MatrixProductCommon.h +221 -0
  766. casadi/include/include/eigen3/Eigen/src/Core/arch/AltiVec/MatrixProductMMA.h +629 -0
  767. casadi/include/include/eigen3/Eigen/src/Core/arch/AltiVec/PacketMath.h +2711 -0
  768. casadi/include/include/eigen3/Eigen/src/Core/arch/CUDA/Complex.h +258 -0
  769. casadi/include/include/eigen3/Eigen/src/Core/arch/Default/BFloat16.h +700 -0
  770. casadi/include/include/eigen3/Eigen/src/Core/arch/Default/ConjHelper.h +117 -0
  771. casadi/include/include/eigen3/Eigen/src/Core/arch/Default/GenericPacketMathFunctions.h +1649 -0
  772. casadi/include/include/eigen3/Eigen/src/Core/arch/Default/GenericPacketMathFunctionsFwd.h +110 -0
  773. casadi/include/include/eigen3/Eigen/src/Core/arch/Default/Half.h +942 -0
  774. casadi/include/include/eigen3/Eigen/src/Core/arch/Default/Settings.h +49 -0
  775. casadi/include/include/eigen3/Eigen/src/Core/arch/Default/TypeCasting.h +120 -0
  776. casadi/include/include/eigen3/Eigen/src/Core/arch/GPU/MathFunctions.h +103 -0
  777. casadi/include/include/eigen3/Eigen/src/Core/arch/GPU/PacketMath.h +1685 -0
  778. casadi/include/include/eigen3/Eigen/src/Core/arch/GPU/TypeCasting.h +80 -0
  779. casadi/include/include/eigen3/Eigen/src/Core/arch/HIP/hcc/math_constants.h +23 -0
  780. casadi/include/include/eigen3/Eigen/src/Core/arch/MSA/Complex.h +648 -0
  781. casadi/include/include/eigen3/Eigen/src/Core/arch/MSA/MathFunctions.h +387 -0
  782. casadi/include/include/eigen3/Eigen/src/Core/arch/MSA/PacketMath.h +1233 -0
  783. casadi/include/include/eigen3/Eigen/src/Core/arch/NEON/Complex.h +584 -0
  784. casadi/include/include/eigen3/Eigen/src/Core/arch/NEON/GeneralBlockPanelKernel.h +183 -0
  785. casadi/include/include/eigen3/Eigen/src/Core/arch/NEON/MathFunctions.h +75 -0
  786. casadi/include/include/eigen3/Eigen/src/Core/arch/NEON/PacketMath.h +4587 -0
  787. casadi/include/include/eigen3/Eigen/src/Core/arch/NEON/TypeCasting.h +1419 -0
  788. casadi/include/include/eigen3/Eigen/src/Core/arch/SSE/Complex.h +351 -0
  789. casadi/include/include/eigen3/Eigen/src/Core/arch/SSE/MathFunctions.h +199 -0
  790. casadi/include/include/eigen3/Eigen/src/Core/arch/SSE/PacketMath.h +1505 -0
  791. casadi/include/include/eigen3/Eigen/src/Core/arch/SSE/TypeCasting.h +142 -0
  792. casadi/include/include/eigen3/Eigen/src/Core/arch/SVE/MathFunctions.h +44 -0
  793. casadi/include/include/eigen3/Eigen/src/Core/arch/SVE/PacketMath.h +752 -0
  794. casadi/include/include/eigen3/Eigen/src/Core/arch/SVE/TypeCasting.h +49 -0
  795. casadi/include/include/eigen3/Eigen/src/Core/arch/SYCL/InteropHeaders.h +232 -0
  796. casadi/include/include/eigen3/Eigen/src/Core/arch/SYCL/MathFunctions.h +301 -0
  797. casadi/include/include/eigen3/Eigen/src/Core/arch/SYCL/PacketMath.h +670 -0
  798. casadi/include/include/eigen3/Eigen/src/Core/arch/SYCL/SyclMemoryModel.h +694 -0
  799. casadi/include/include/eigen3/Eigen/src/Core/arch/SYCL/TypeCasting.h +85 -0
  800. casadi/include/include/eigen3/Eigen/src/Core/arch/ZVector/Complex.h +426 -0
  801. casadi/include/include/eigen3/Eigen/src/Core/arch/ZVector/MathFunctions.h +233 -0
  802. casadi/include/include/eigen3/Eigen/src/Core/arch/ZVector/PacketMath.h +1060 -0
  803. casadi/include/include/eigen3/Eigen/src/Core/functors/AssignmentFunctors.h +177 -0
  804. casadi/include/include/eigen3/Eigen/src/Core/functors/BinaryFunctors.h +541 -0
  805. casadi/include/include/eigen3/Eigen/src/Core/functors/NullaryFunctors.h +189 -0
  806. casadi/include/include/eigen3/Eigen/src/Core/functors/StlFunctors.h +166 -0
  807. casadi/include/include/eigen3/Eigen/src/Core/functors/TernaryFunctors.h +25 -0
  808. casadi/include/include/eigen3/Eigen/src/Core/functors/UnaryFunctors.h +1131 -0
  809. casadi/include/include/eigen3/Eigen/src/Core/products/GeneralBlockPanelKernel.h +2645 -0
  810. casadi/include/include/eigen3/Eigen/src/Core/products/GeneralMatrixMatrix.h +517 -0
  811. casadi/include/include/eigen3/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h +317 -0
  812. casadi/include/include/eigen3/Eigen/src/Core/products/GeneralMatrixMatrixTriangular_BLAS.h +145 -0
  813. casadi/include/include/eigen3/Eigen/src/Core/products/GeneralMatrixMatrix_BLAS.h +124 -0
  814. casadi/include/include/eigen3/Eigen/src/Core/products/GeneralMatrixVector.h +518 -0
  815. casadi/include/include/eigen3/Eigen/src/Core/products/GeneralMatrixVector_BLAS.h +136 -0
  816. casadi/include/include/eigen3/Eigen/src/Core/products/Parallelizer.h +180 -0
  817. casadi/include/include/eigen3/Eigen/src/Core/products/SelfadjointMatrixMatrix.h +544 -0
  818. casadi/include/include/eigen3/Eigen/src/Core/products/SelfadjointMatrixMatrix_BLAS.h +295 -0
  819. casadi/include/include/eigen3/Eigen/src/Core/products/SelfadjointMatrixVector.h +262 -0
  820. casadi/include/include/eigen3/Eigen/src/Core/products/SelfadjointMatrixVector_BLAS.h +118 -0
  821. casadi/include/include/eigen3/Eigen/src/Core/products/SelfadjointProduct.h +133 -0
  822. casadi/include/include/eigen3/Eigen/src/Core/products/SelfadjointRank2Update.h +94 -0
  823. casadi/include/include/eigen3/Eigen/src/Core/products/TriangularMatrixMatrix.h +472 -0
  824. casadi/include/include/eigen3/Eigen/src/Core/products/TriangularMatrixMatrix_BLAS.h +317 -0
  825. casadi/include/include/eigen3/Eigen/src/Core/products/TriangularMatrixVector.h +350 -0
  826. casadi/include/include/eigen3/Eigen/src/Core/products/TriangularMatrixVector_BLAS.h +255 -0
  827. casadi/include/include/eigen3/Eigen/src/Core/products/TriangularSolverMatrix.h +337 -0
  828. casadi/include/include/eigen3/Eigen/src/Core/products/TriangularSolverMatrix_BLAS.h +167 -0
  829. casadi/include/include/eigen3/Eigen/src/Core/products/TriangularSolverVector.h +148 -0
  830. casadi/include/include/eigen3/Eigen/src/Core/util/BlasUtil.h +583 -0
  831. casadi/include/include/eigen3/Eigen/src/Core/util/ConfigureVectorization.h +512 -0
  832. casadi/include/include/eigen3/Eigen/src/Core/util/Constants.h +563 -0
  833. casadi/include/include/eigen3/Eigen/src/Core/util/DisableStupidWarnings.h +106 -0
  834. casadi/include/include/eigen3/Eigen/src/Core/util/ForwardDeclarations.h +322 -0
  835. casadi/include/include/eigen3/Eigen/src/Core/util/IndexedViewHelper.h +186 -0
  836. casadi/include/include/eigen3/Eigen/src/Core/util/IntegralConstant.h +272 -0
  837. casadi/include/include/eigen3/Eigen/src/Core/util/MKL_support.h +137 -0
  838. casadi/include/include/eigen3/Eigen/src/Core/util/Macros.h +1464 -0
  839. casadi/include/include/eigen3/Eigen/src/Core/util/Memory.h +1163 -0
  840. casadi/include/include/eigen3/Eigen/src/Core/util/Meta.h +812 -0
  841. casadi/include/include/eigen3/Eigen/src/Core/util/NonMPL2.h +3 -0
  842. casadi/include/include/eigen3/Eigen/src/Core/util/ReenableStupidWarnings.h +31 -0
  843. casadi/include/include/eigen3/Eigen/src/Core/util/ReshapedHelper.h +51 -0
  844. casadi/include/include/eigen3/Eigen/src/Core/util/StaticAssert.h +221 -0
  845. casadi/include/include/eigen3/Eigen/src/Core/util/SymbolicIndex.h +293 -0
  846. casadi/include/include/eigen3/Eigen/src/Core/util/XprHelper.h +856 -0
  847. casadi/include/include/eigen3/Eigen/src/Eigenvalues/ComplexEigenSolver.h +346 -0
  848. casadi/include/include/eigen3/Eigen/src/Eigenvalues/ComplexSchur.h +462 -0
  849. casadi/include/include/eigen3/Eigen/src/Eigenvalues/ComplexSchur_LAPACKE.h +91 -0
  850. casadi/include/include/eigen3/Eigen/src/Eigenvalues/EigenSolver.h +622 -0
  851. casadi/include/include/eigen3/Eigen/src/Eigenvalues/GeneralizedEigenSolver.h +418 -0
  852. casadi/include/include/eigen3/Eigen/src/Eigenvalues/GeneralizedSelfAdjointEigenSolver.h +226 -0
  853. casadi/include/include/eigen3/Eigen/src/Eigenvalues/HessenbergDecomposition.h +374 -0
  854. casadi/include/include/eigen3/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h +158 -0
  855. casadi/include/include/eigen3/Eigen/src/Eigenvalues/RealQZ.h +657 -0
  856. casadi/include/include/eigen3/Eigen/src/Eigenvalues/RealSchur.h +558 -0
  857. casadi/include/include/eigen3/Eigen/src/Eigenvalues/RealSchur_LAPACKE.h +77 -0
  858. casadi/include/include/eigen3/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h +904 -0
  859. casadi/include/include/eigen3/Eigen/src/Eigenvalues/SelfAdjointEigenSolver_LAPACKE.h +87 -0
  860. casadi/include/include/eigen3/Eigen/src/Eigenvalues/Tridiagonalization.h +561 -0
  861. casadi/include/include/eigen3/Eigen/src/Geometry/AlignedBox.h +486 -0
  862. casadi/include/include/eigen3/Eigen/src/Geometry/AngleAxis.h +247 -0
  863. casadi/include/include/eigen3/Eigen/src/Geometry/EulerAngles.h +114 -0
  864. casadi/include/include/eigen3/Eigen/src/Geometry/Homogeneous.h +501 -0
  865. casadi/include/include/eigen3/Eigen/src/Geometry/Hyperplane.h +282 -0
  866. casadi/include/include/eigen3/Eigen/src/Geometry/OrthoMethods.h +235 -0
  867. casadi/include/include/eigen3/Eigen/src/Geometry/ParametrizedLine.h +232 -0
  868. casadi/include/include/eigen3/Eigen/src/Geometry/Quaternion.h +870 -0
  869. casadi/include/include/eigen3/Eigen/src/Geometry/Rotation2D.h +199 -0
  870. casadi/include/include/eigen3/Eigen/src/Geometry/RotationBase.h +206 -0
  871. casadi/include/include/eigen3/Eigen/src/Geometry/Scaling.h +188 -0
  872. casadi/include/include/eigen3/Eigen/src/Geometry/Transform.h +1563 -0
  873. casadi/include/include/eigen3/Eigen/src/Geometry/Translation.h +202 -0
  874. casadi/include/include/eigen3/Eigen/src/Geometry/Umeyama.h +166 -0
  875. casadi/include/include/eigen3/Eigen/src/Geometry/arch/Geometry_SIMD.h +168 -0
  876. casadi/include/include/eigen3/Eigen/src/Householder/BlockHouseholder.h +110 -0
  877. casadi/include/include/eigen3/Eigen/src/Householder/Householder.h +176 -0
  878. casadi/include/include/eigen3/Eigen/src/Householder/HouseholderSequence.h +545 -0
  879. casadi/include/include/eigen3/Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h +226 -0
  880. casadi/include/include/eigen3/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h +212 -0
  881. casadi/include/include/eigen3/Eigen/src/IterativeLinearSolvers/ConjugateGradient.h +229 -0
  882. casadi/include/include/eigen3/Eigen/src/IterativeLinearSolvers/IncompleteCholesky.h +394 -0
  883. casadi/include/include/eigen3/Eigen/src/IterativeLinearSolvers/IncompleteLUT.h +453 -0
  884. casadi/include/include/eigen3/Eigen/src/IterativeLinearSolvers/IterativeSolverBase.h +444 -0
  885. casadi/include/include/eigen3/Eigen/src/IterativeLinearSolvers/LeastSquareConjugateGradient.h +198 -0
  886. casadi/include/include/eigen3/Eigen/src/IterativeLinearSolvers/SolveWithGuess.h +117 -0
  887. casadi/include/include/eigen3/Eigen/src/Jacobi/Jacobi.h +483 -0
  888. casadi/include/include/eigen3/Eigen/src/KLUSupport/KLUSupport.h +358 -0
  889. casadi/include/include/eigen3/Eigen/src/LU/Determinant.h +117 -0
  890. casadi/include/include/eigen3/Eigen/src/LU/FullPivLU.h +877 -0
  891. casadi/include/include/eigen3/Eigen/src/LU/InverseImpl.h +432 -0
  892. casadi/include/include/eigen3/Eigen/src/LU/PartialPivLU.h +624 -0
  893. casadi/include/include/eigen3/Eigen/src/LU/PartialPivLU_LAPACKE.h +83 -0
  894. casadi/include/include/eigen3/Eigen/src/LU/arch/InverseSize4.h +351 -0
  895. casadi/include/include/eigen3/Eigen/src/MetisSupport/MetisSupport.h +137 -0
  896. casadi/include/include/eigen3/Eigen/src/OrderingMethods/Amd.h +435 -0
  897. casadi/include/include/eigen3/Eigen/src/OrderingMethods/Eigen_Colamd.h +1863 -0
  898. casadi/include/include/eigen3/Eigen/src/OrderingMethods/Ordering.h +153 -0
  899. casadi/include/include/eigen3/Eigen/src/PaStiXSupport/PaStiXSupport.h +678 -0
  900. casadi/include/include/eigen3/Eigen/src/PardisoSupport/PardisoSupport.h +545 -0
  901. casadi/include/include/eigen3/Eigen/src/QR/ColPivHouseholderQR.h +674 -0
  902. casadi/include/include/eigen3/Eigen/src/QR/ColPivHouseholderQR_LAPACKE.h +97 -0
  903. casadi/include/include/eigen3/Eigen/src/QR/CompleteOrthogonalDecomposition.h +635 -0
  904. casadi/include/include/eigen3/Eigen/src/QR/FullPivHouseholderQR.h +713 -0
  905. casadi/include/include/eigen3/Eigen/src/QR/HouseholderQR.h +434 -0
  906. casadi/include/include/eigen3/Eigen/src/QR/HouseholderQR_LAPACKE.h +68 -0
  907. casadi/include/include/eigen3/Eigen/src/SPQRSupport/SuiteSparseQRSupport.h +335 -0
  908. casadi/include/include/eigen3/Eigen/src/SVD/BDCSVD.h +1366 -0
  909. casadi/include/include/eigen3/Eigen/src/SVD/JacobiSVD.h +812 -0
  910. casadi/include/include/eigen3/Eigen/src/SVD/JacobiSVD_LAPACKE.h +91 -0
  911. casadi/include/include/eigen3/Eigen/src/SVD/SVDBase.h +376 -0
  912. casadi/include/include/eigen3/Eigen/src/SVD/UpperBidiagonalization.h +414 -0
  913. casadi/include/include/eigen3/Eigen/src/SparseCholesky/SimplicialCholesky.h +697 -0
  914. casadi/include/include/eigen3/Eigen/src/SparseCholesky/SimplicialCholesky_impl.h +174 -0
  915. casadi/include/include/eigen3/Eigen/src/SparseCore/AmbiVector.h +378 -0
  916. casadi/include/include/eigen3/Eigen/src/SparseCore/CompressedStorage.h +274 -0
  917. casadi/include/include/eigen3/Eigen/src/SparseCore/ConservativeSparseSparseProduct.h +352 -0
  918. casadi/include/include/eigen3/Eigen/src/SparseCore/MappedSparseMatrix.h +67 -0
  919. casadi/include/include/eigen3/Eigen/src/SparseCore/SparseAssign.h +270 -0
  920. casadi/include/include/eigen3/Eigen/src/SparseCore/SparseBlock.h +571 -0
  921. casadi/include/include/eigen3/Eigen/src/SparseCore/SparseColEtree.h +206 -0
  922. casadi/include/include/eigen3/Eigen/src/SparseCore/SparseCompressedBase.h +370 -0
  923. casadi/include/include/eigen3/Eigen/src/SparseCore/SparseCwiseBinaryOp.h +722 -0
  924. casadi/include/include/eigen3/Eigen/src/SparseCore/SparseCwiseUnaryOp.h +150 -0
  925. casadi/include/include/eigen3/Eigen/src/SparseCore/SparseDenseProduct.h +342 -0
  926. casadi/include/include/eigen3/Eigen/src/SparseCore/SparseDiagonalProduct.h +138 -0
  927. casadi/include/include/eigen3/Eigen/src/SparseCore/SparseDot.h +98 -0
  928. casadi/include/include/eigen3/Eigen/src/SparseCore/SparseFuzzy.h +29 -0
  929. casadi/include/include/eigen3/Eigen/src/SparseCore/SparseMap.h +305 -0
  930. casadi/include/include/eigen3/Eigen/src/SparseCore/SparseMatrix.h +1518 -0
  931. casadi/include/include/eigen3/Eigen/src/SparseCore/SparseMatrixBase.h +398 -0
  932. casadi/include/include/eigen3/Eigen/src/SparseCore/SparsePermutation.h +178 -0
  933. casadi/include/include/eigen3/Eigen/src/SparseCore/SparseProduct.h +181 -0
  934. casadi/include/include/eigen3/Eigen/src/SparseCore/SparseRedux.h +49 -0
  935. casadi/include/include/eigen3/Eigen/src/SparseCore/SparseRef.h +397 -0
  936. casadi/include/include/eigen3/Eigen/src/SparseCore/SparseSelfAdjointView.h +659 -0
  937. casadi/include/include/eigen3/Eigen/src/SparseCore/SparseSolverBase.h +124 -0
  938. casadi/include/include/eigen3/Eigen/src/SparseCore/SparseSparseProductWithPruning.h +198 -0
  939. casadi/include/include/eigen3/Eigen/src/SparseCore/SparseTranspose.h +92 -0
  940. casadi/include/include/eigen3/Eigen/src/SparseCore/SparseTriangularView.h +189 -0
  941. casadi/include/include/eigen3/Eigen/src/SparseCore/SparseUtil.h +186 -0
  942. casadi/include/include/eigen3/Eigen/src/SparseCore/SparseVector.h +478 -0
  943. casadi/include/include/eigen3/Eigen/src/SparseCore/SparseView.h +254 -0
  944. casadi/include/include/eigen3/Eigen/src/SparseCore/TriangularSolver.h +315 -0
  945. casadi/include/include/eigen3/Eigen/src/SparseLU/SparseLU.h +923 -0
  946. casadi/include/include/eigen3/Eigen/src/SparseLU/SparseLUImpl.h +66 -0
  947. casadi/include/include/eigen3/Eigen/src/SparseLU/SparseLU_Memory.h +226 -0
  948. casadi/include/include/eigen3/Eigen/src/SparseLU/SparseLU_Structs.h +110 -0
  949. casadi/include/include/eigen3/Eigen/src/SparseLU/SparseLU_SupernodalMatrix.h +375 -0
  950. casadi/include/include/eigen3/Eigen/src/SparseLU/SparseLU_Utils.h +80 -0
  951. casadi/include/include/eigen3/Eigen/src/SparseLU/SparseLU_column_bmod.h +181 -0
  952. casadi/include/include/eigen3/Eigen/src/SparseLU/SparseLU_column_dfs.h +179 -0
  953. casadi/include/include/eigen3/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h +107 -0
  954. casadi/include/include/eigen3/Eigen/src/SparseLU/SparseLU_gemm_kernel.h +280 -0
  955. casadi/include/include/eigen3/Eigen/src/SparseLU/SparseLU_heap_relax_snode.h +126 -0
  956. casadi/include/include/eigen3/Eigen/src/SparseLU/SparseLU_kernel_bmod.h +130 -0
  957. casadi/include/include/eigen3/Eigen/src/SparseLU/SparseLU_panel_bmod.h +223 -0
  958. casadi/include/include/eigen3/Eigen/src/SparseLU/SparseLU_panel_dfs.h +258 -0
  959. casadi/include/include/eigen3/Eigen/src/SparseLU/SparseLU_pivotL.h +137 -0
  960. casadi/include/include/eigen3/Eigen/src/SparseLU/SparseLU_pruneL.h +136 -0
  961. casadi/include/include/eigen3/Eigen/src/SparseLU/SparseLU_relax_snode.h +83 -0
  962. casadi/include/include/eigen3/Eigen/src/SparseQR/SparseQR.h +758 -0
  963. casadi/include/include/eigen3/Eigen/src/StlSupport/StdDeque.h +116 -0
  964. casadi/include/include/eigen3/Eigen/src/StlSupport/StdList.h +106 -0
  965. casadi/include/include/eigen3/Eigen/src/StlSupport/StdVector.h +131 -0
  966. casadi/include/include/eigen3/Eigen/src/StlSupport/details.h +84 -0
  967. casadi/include/include/eigen3/Eigen/src/SuperLUSupport/SuperLUSupport.h +1025 -0
  968. casadi/include/include/eigen3/Eigen/src/UmfPackSupport/UmfPackSupport.h +642 -0
  969. casadi/include/include/eigen3/Eigen/src/misc/Image.h +82 -0
  970. casadi/include/include/eigen3/Eigen/src/misc/Kernel.h +79 -0
  971. casadi/include/include/eigen3/Eigen/src/misc/RealSvd2x2.h +55 -0
  972. casadi/include/include/eigen3/Eigen/src/misc/blas.h +440 -0
  973. casadi/include/include/eigen3/Eigen/src/misc/lapack.h +152 -0
  974. casadi/include/include/eigen3/Eigen/src/misc/lapacke.h +16292 -0
  975. casadi/include/include/eigen3/Eigen/src/misc/lapacke_mangling.h +17 -0
  976. casadi/include/include/eigen3/Eigen/src/plugins/ArrayCwiseBinaryOps.h +358 -0
  977. casadi/include/include/eigen3/Eigen/src/plugins/ArrayCwiseUnaryOps.h +696 -0
  978. casadi/include/include/eigen3/Eigen/src/plugins/BlockMethods.h +1442 -0
  979. casadi/include/include/eigen3/Eigen/src/plugins/CommonCwiseBinaryOps.h +115 -0
  980. casadi/include/include/eigen3/Eigen/src/plugins/CommonCwiseUnaryOps.h +177 -0
  981. casadi/include/include/eigen3/Eigen/src/plugins/IndexedViewMethods.h +262 -0
  982. casadi/include/include/eigen3/Eigen/src/plugins/MatrixCwiseBinaryOps.h +152 -0
  983. casadi/include/include/eigen3/Eigen/src/plugins/MatrixCwiseUnaryOps.h +95 -0
  984. casadi/include/include/eigen3/Eigen/src/plugins/ReshapedMethods.h +149 -0
  985. casadi/include/include/eigen3/signature_of_eigen3_matrix_library +1 -0
  986. casadi/include/include/eigen3/unsupported/Eigen/AdolcForward +159 -0
  987. casadi/include/include/eigen3/unsupported/Eigen/AlignedVector3 +234 -0
  988. casadi/include/include/eigen3/unsupported/Eigen/ArpackSupport +30 -0
  989. casadi/include/include/eigen3/unsupported/Eigen/AutoDiff +46 -0
  990. casadi/include/include/eigen3/unsupported/Eigen/BVH +95 -0
  991. casadi/include/include/eigen3/unsupported/Eigen/CXX11/Tensor +137 -0
  992. casadi/include/include/eigen3/unsupported/Eigen/CXX11/TensorSymmetry +42 -0
  993. casadi/include/include/eigen3/unsupported/Eigen/CXX11/ThreadPool +74 -0
  994. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/Tensor.h +554 -0
  995. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorArgMax.h +329 -0
  996. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorAssign.h +247 -0
  997. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorBase.h +1176 -0
  998. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorBlock.h +1559 -0
  999. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorBroadcasting.h +1093 -0
  1000. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorChipping.h +518 -0
  1001. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorConcatenation.h +377 -0
  1002. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h +1023 -0
  1003. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContractionBlocking.h +73 -0
  1004. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContractionCuda.h +6 -0
  1005. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContractionGpu.h +1413 -0
  1006. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContractionMapper.h +575 -0
  1007. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContractionSycl.h +1650 -0
  1008. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContractionThreadPool.h +1679 -0
  1009. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorConversion.h +456 -0
  1010. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorConvolution.h +1132 -0
  1011. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorConvolutionSycl.h +544 -0
  1012. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorCostModel.h +214 -0
  1013. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorCustomOp.h +347 -0
  1014. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDevice.h +137 -0
  1015. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceCuda.h +6 -0
  1016. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceDefault.h +104 -0
  1017. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceGpu.h +389 -0
  1018. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceSycl.h +1048 -0
  1019. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceThreadPool.h +409 -0
  1020. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDimensionList.h +236 -0
  1021. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDimensions.h +490 -0
  1022. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorEvalTo.h +236 -0
  1023. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorEvaluator.h +983 -0
  1024. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorExecutor.h +703 -0
  1025. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorExpr.h +388 -0
  1026. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorFFT.h +669 -0
  1027. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorFixedSize.h +379 -0
  1028. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorForcedEval.h +237 -0
  1029. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorForwardDeclarations.h +191 -0
  1030. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorFunctors.h +488 -0
  1031. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorGenerator.h +302 -0
  1032. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorGlobalFunctions.h +33 -0
  1033. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorGpuHipCudaDefines.h +99 -0
  1034. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorGpuHipCudaUndefines.h +44 -0
  1035. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorIO.h +79 -0
  1036. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorImagePatch.h +603 -0
  1037. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorIndexList.h +738 -0
  1038. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorInflation.h +247 -0
  1039. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorInitializer.h +82 -0
  1040. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorIntDiv.h +263 -0
  1041. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorLayoutSwap.h +216 -0
  1042. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorMacros.h +98 -0
  1043. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorMap.h +327 -0
  1044. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorMeta.h +311 -0
  1045. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorMorphing.h +1102 -0
  1046. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorPadding.h +708 -0
  1047. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorPatch.h +291 -0
  1048. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorRandom.h +322 -0
  1049. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorReduction.h +998 -0
  1050. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorReductionCuda.h +6 -0
  1051. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorReductionGpu.h +966 -0
  1052. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorReductionSycl.h +582 -0
  1053. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorRef.h +454 -0
  1054. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorReverse.h +465 -0
  1055. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorScan.h +528 -0
  1056. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorScanSycl.h +513 -0
  1057. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorShuffling.h +471 -0
  1058. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorStorage.h +161 -0
  1059. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorStriding.h +346 -0
  1060. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorTrace.h +303 -0
  1061. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorTraits.h +264 -0
  1062. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorUInt128.h +249 -0
  1063. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorVolumePatch.h +629 -0
  1064. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/TensorSymmetry/DynamicSymmetry.h +293 -0
  1065. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/TensorSymmetry/StaticSymmetry.h +236 -0
  1066. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/TensorSymmetry/Symmetry.h +338 -0
  1067. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/TensorSymmetry/util/TemplateGroupTheory.h +669 -0
  1068. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/Barrier.h +67 -0
  1069. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/EventCount.h +249 -0
  1070. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/NonBlockingThreadPool.h +486 -0
  1071. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/RunQueue.h +236 -0
  1072. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/ThreadCancel.h +23 -0
  1073. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/ThreadEnvironment.h +40 -0
  1074. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/ThreadLocal.h +301 -0
  1075. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/ThreadPoolInterface.h +48 -0
  1076. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/ThreadYield.h +20 -0
  1077. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/util/CXX11Meta.h +537 -0
  1078. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/util/CXX11Workarounds.h +88 -0
  1079. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/util/EmulateArray.h +261 -0
  1080. casadi/include/include/eigen3/unsupported/Eigen/CXX11/src/util/MaxSizeVector.h +158 -0
  1081. casadi/include/include/eigen3/unsupported/Eigen/EulerAngles +43 -0
  1082. casadi/include/include/eigen3/unsupported/Eigen/FFT +419 -0
  1083. casadi/include/include/eigen3/unsupported/Eigen/IterativeSolvers +51 -0
  1084. casadi/include/include/eigen3/unsupported/Eigen/KroneckerProduct +36 -0
  1085. casadi/include/include/eigen3/unsupported/Eigen/LevenbergMarquardt +49 -0
  1086. casadi/include/include/eigen3/unsupported/Eigen/MPRealSupport +213 -0
  1087. casadi/include/include/eigen3/unsupported/Eigen/MatrixFunctions +504 -0
  1088. casadi/include/include/eigen3/unsupported/Eigen/MoreVectorization +24 -0
  1089. casadi/include/include/eigen3/unsupported/Eigen/NonLinearOptimization +140 -0
  1090. casadi/include/include/eigen3/unsupported/Eigen/NumericalDiff +56 -0
  1091. casadi/include/include/eigen3/unsupported/Eigen/OpenGLSupport +322 -0
  1092. casadi/include/include/eigen3/unsupported/Eigen/Polynomials +137 -0
  1093. casadi/include/include/eigen3/unsupported/Eigen/Skyline +39 -0
  1094. casadi/include/include/eigen3/unsupported/Eigen/SparseExtra +54 -0
  1095. casadi/include/include/eigen3/unsupported/Eigen/SpecialFunctions +103 -0
  1096. casadi/include/include/eigen3/unsupported/Eigen/Splines +35 -0
  1097. casadi/include/include/eigen3/unsupported/Eigen/src/AutoDiff/AutoDiffJacobian.h +108 -0
  1098. casadi/include/include/eigen3/unsupported/Eigen/src/AutoDiff/AutoDiffScalar.h +730 -0
  1099. casadi/include/include/eigen3/unsupported/Eigen/src/AutoDiff/AutoDiffVector.h +220 -0
  1100. casadi/include/include/eigen3/unsupported/Eigen/src/BVH/BVAlgorithms.h +293 -0
  1101. casadi/include/include/eigen3/unsupported/Eigen/src/BVH/KdBVH.h +223 -0
  1102. casadi/include/include/eigen3/unsupported/Eigen/src/Eigenvalues/ArpackSelfAdjointEigenSolver.h +790 -0
  1103. casadi/include/include/eigen3/unsupported/Eigen/src/EulerAngles/EulerAngles.h +355 -0
  1104. casadi/include/include/eigen3/unsupported/Eigen/src/EulerAngles/EulerSystem.h +305 -0
  1105. casadi/include/include/eigen3/unsupported/Eigen/src/FFT/ei_fftw_impl.h +261 -0
  1106. casadi/include/include/eigen3/unsupported/Eigen/src/FFT/ei_kissfft_impl.h +449 -0
  1107. casadi/include/include/eigen3/unsupported/Eigen/src/IterativeSolvers/ConstrainedConjGrad.h +187 -0
  1108. casadi/include/include/eigen3/unsupported/Eigen/src/IterativeSolvers/DGMRES.h +511 -0
  1109. casadi/include/include/eigen3/unsupported/Eigen/src/IterativeSolvers/GMRES.h +335 -0
  1110. casadi/include/include/eigen3/unsupported/Eigen/src/IterativeSolvers/IDRS.h +436 -0
  1111. casadi/include/include/eigen3/unsupported/Eigen/src/IterativeSolvers/IncompleteLU.h +90 -0
  1112. casadi/include/include/eigen3/unsupported/Eigen/src/IterativeSolvers/IterationController.h +154 -0
  1113. casadi/include/include/eigen3/unsupported/Eigen/src/IterativeSolvers/MINRES.h +267 -0
  1114. casadi/include/include/eigen3/unsupported/Eigen/src/IterativeSolvers/Scaling.h +193 -0
  1115. casadi/include/include/eigen3/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h +305 -0
  1116. casadi/include/include/eigen3/unsupported/Eigen/src/LevenbergMarquardt/LMcovar.h +84 -0
  1117. casadi/include/include/eigen3/unsupported/Eigen/src/LevenbergMarquardt/LMonestep.h +202 -0
  1118. casadi/include/include/eigen3/unsupported/Eigen/src/LevenbergMarquardt/LMpar.h +160 -0
  1119. casadi/include/include/eigen3/unsupported/Eigen/src/LevenbergMarquardt/LMqrsolv.h +188 -0
  1120. casadi/include/include/eigen3/unsupported/Eigen/src/LevenbergMarquardt/LevenbergMarquardt.h +396 -0
  1121. casadi/include/include/eigen3/unsupported/Eigen/src/MatrixFunctions/MatrixExponential.h +441 -0
  1122. casadi/include/include/eigen3/unsupported/Eigen/src/MatrixFunctions/MatrixFunction.h +569 -0
  1123. casadi/include/include/eigen3/unsupported/Eigen/src/MatrixFunctions/MatrixLogarithm.h +373 -0
  1124. casadi/include/include/eigen3/unsupported/Eigen/src/MatrixFunctions/MatrixPower.h +705 -0
  1125. casadi/include/include/eigen3/unsupported/Eigen/src/MatrixFunctions/MatrixSquareRoot.h +368 -0
  1126. casadi/include/include/eigen3/unsupported/Eigen/src/MatrixFunctions/StemFunction.h +117 -0
  1127. casadi/include/include/eigen3/unsupported/Eigen/src/MoreVectorization/MathFunctions.h +95 -0
  1128. casadi/include/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/HybridNonLinearSolver.h +601 -0
  1129. casadi/include/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/LevenbergMarquardt.h +657 -0
  1130. casadi/include/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/chkder.h +66 -0
  1131. casadi/include/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/covar.h +70 -0
  1132. casadi/include/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/dogleg.h +107 -0
  1133. casadi/include/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/fdjac1.h +79 -0
  1134. casadi/include/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/lmpar.h +298 -0
  1135. casadi/include/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/qrsolv.h +91 -0
  1136. casadi/include/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/r1mpyq.h +30 -0
  1137. casadi/include/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/r1updt.h +99 -0
  1138. casadi/include/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/rwupdt.h +49 -0
  1139. casadi/include/include/eigen3/unsupported/Eigen/src/NumericalDiff/NumericalDiff.h +130 -0
  1140. casadi/include/include/eigen3/unsupported/Eigen/src/Polynomials/Companion.h +280 -0
  1141. casadi/include/include/eigen3/unsupported/Eigen/src/Polynomials/PolynomialSolver.h +428 -0
  1142. casadi/include/include/eigen3/unsupported/Eigen/src/Polynomials/PolynomialUtils.h +143 -0
  1143. casadi/include/include/eigen3/unsupported/Eigen/src/Skyline/SkylineInplaceLU.h +352 -0
  1144. casadi/include/include/eigen3/unsupported/Eigen/src/Skyline/SkylineMatrix.h +862 -0
  1145. casadi/include/include/eigen3/unsupported/Eigen/src/Skyline/SkylineMatrixBase.h +212 -0
  1146. casadi/include/include/eigen3/unsupported/Eigen/src/Skyline/SkylineProduct.h +295 -0
  1147. casadi/include/include/eigen3/unsupported/Eigen/src/Skyline/SkylineStorage.h +259 -0
  1148. casadi/include/include/eigen3/unsupported/Eigen/src/Skyline/SkylineUtil.h +89 -0
  1149. casadi/include/include/eigen3/unsupported/Eigen/src/SparseExtra/BlockOfDynamicSparseMatrix.h +122 -0
  1150. casadi/include/include/eigen3/unsupported/Eigen/src/SparseExtra/BlockSparseMatrix.h +1079 -0
  1151. casadi/include/include/eigen3/unsupported/Eigen/src/SparseExtra/DynamicSparseMatrix.h +404 -0
  1152. casadi/include/include/eigen3/unsupported/Eigen/src/SparseExtra/MarketIO.h +282 -0
  1153. casadi/include/include/eigen3/unsupported/Eigen/src/SparseExtra/MatrixMarketIterator.h +247 -0
  1154. casadi/include/include/eigen3/unsupported/Eigen/src/SparseExtra/RandomSetter.h +349 -0
  1155. casadi/include/include/eigen3/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsArrayAPI.h +286 -0
  1156. casadi/include/include/eigen3/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsBFloat16.h +68 -0
  1157. casadi/include/include/eigen3/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsFunctors.h +357 -0
  1158. casadi/include/include/eigen3/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsHalf.h +66 -0
  1159. casadi/include/include/eigen3/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsImpl.h +1959 -0
  1160. casadi/include/include/eigen3/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsPacketMath.h +118 -0
  1161. casadi/include/include/eigen3/unsupported/Eigen/src/SpecialFunctions/HipVectorCompatibility.h +67 -0
  1162. casadi/include/include/eigen3/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsArrayAPI.h +167 -0
  1163. casadi/include/include/eigen3/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsBFloat16.h +58 -0
  1164. casadi/include/include/eigen3/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsFunctors.h +330 -0
  1165. casadi/include/include/eigen3/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsHalf.h +58 -0
  1166. casadi/include/include/eigen3/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsImpl.h +2045 -0
  1167. casadi/include/include/eigen3/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsPacketMath.h +79 -0
  1168. casadi/include/include/eigen3/unsupported/Eigen/src/SpecialFunctions/arch/AVX/BesselFunctions.h +46 -0
  1169. casadi/include/include/eigen3/unsupported/Eigen/src/SpecialFunctions/arch/AVX/SpecialFunctions.h +16 -0
  1170. casadi/include/include/eigen3/unsupported/Eigen/src/SpecialFunctions/arch/AVX512/BesselFunctions.h +46 -0
  1171. casadi/include/include/eigen3/unsupported/Eigen/src/SpecialFunctions/arch/AVX512/SpecialFunctions.h +16 -0
  1172. casadi/include/include/eigen3/unsupported/Eigen/src/SpecialFunctions/arch/GPU/SpecialFunctions.h +369 -0
  1173. casadi/include/include/eigen3/unsupported/Eigen/src/SpecialFunctions/arch/NEON/BesselFunctions.h +54 -0
  1174. casadi/include/include/eigen3/unsupported/Eigen/src/SpecialFunctions/arch/NEON/SpecialFunctions.h +34 -0
  1175. casadi/include/include/eigen3/unsupported/Eigen/src/Splines/Spline.h +507 -0
  1176. casadi/include/include/eigen3/unsupported/Eigen/src/Splines/SplineFitting.h +431 -0
  1177. casadi/include/include/eigen3/unsupported/Eigen/src/Splines/SplineFwd.h +93 -0
  1178. casadi/include/include/highs/HConfig.h +20 -0
  1179. casadi/include/include/highs/Highs.h +1459 -0
  1180. casadi/include/include/highs/filereaderlp/builder.hpp +25 -0
  1181. casadi/include/include/highs/filereaderlp/model.hpp +68 -0
  1182. casadi/include/include/highs/filereaderlp/reader.hpp +10 -0
  1183. casadi/include/include/highs/fortran/highs_fortran_api.mod +0 -0
  1184. casadi/include/include/highs/interfaces/highs_c_api.h +2107 -0
  1185. casadi/include/include/highs/io/Filereader.h +47 -0
  1186. casadi/include/include/highs/io/FilereaderEms.h +33 -0
  1187. casadi/include/include/highs/io/FilereaderLp.h +54 -0
  1188. casadi/include/include/highs/io/FilereaderMps.h +30 -0
  1189. casadi/include/include/highs/io/HMPSIO.h +81 -0
  1190. casadi/include/include/highs/io/HMpsFF.h +233 -0
  1191. casadi/include/include/highs/io/HighsIO.h +99 -0
  1192. casadi/include/include/highs/io/LoadOptions.h +27 -0
  1193. casadi/include/include/highs/ipm/IpxWrapper.h +73 -0
  1194. casadi/include/include/highs/lp_data/HConst.h +295 -0
  1195. casadi/include/include/highs/lp_data/HStruct.h +124 -0
  1196. casadi/include/include/highs/lp_data/HighsAnalysis.h +26 -0
  1197. casadi/include/include/highs/lp_data/HighsCallback.h +33 -0
  1198. casadi/include/include/highs/lp_data/HighsCallbackStruct.h +36 -0
  1199. casadi/include/include/highs/lp_data/HighsDebug.h +37 -0
  1200. casadi/include/include/highs/lp_data/HighsInfo.h +304 -0
  1201. casadi/include/include/highs/lp_data/HighsInfoDebug.h +30 -0
  1202. casadi/include/include/highs/lp_data/HighsLp.h +85 -0
  1203. casadi/include/include/highs/lp_data/HighsLpSolverObject.h +48 -0
  1204. casadi/include/include/highs/lp_data/HighsLpUtils.h +266 -0
  1205. casadi/include/include/highs/lp_data/HighsModelUtils.h +109 -0
  1206. casadi/include/include/highs/lp_data/HighsOptions.h +1130 -0
  1207. casadi/include/include/highs/lp_data/HighsRanging.h +46 -0
  1208. casadi/include/include/highs/lp_data/HighsRuntimeOptions.h +276 -0
  1209. casadi/include/include/highs/lp_data/HighsSolution.h +137 -0
  1210. casadi/include/include/highs/lp_data/HighsSolutionDebug.h +90 -0
  1211. casadi/include/include/highs/lp_data/HighsSolve.h +24 -0
  1212. casadi/include/include/highs/lp_data/HighsStatus.h +32 -0
  1213. casadi/include/include/highs/mip/HighsCliqueTable.h +318 -0
  1214. casadi/include/include/highs/mip/HighsConflictPool.h +112 -0
  1215. casadi/include/include/highs/mip/HighsCutGeneration.h +96 -0
  1216. casadi/include/include/highs/mip/HighsCutPool.h +171 -0
  1217. casadi/include/include/highs/mip/HighsDebugSol.h +142 -0
  1218. casadi/include/include/highs/mip/HighsDomain.h +633 -0
  1219. casadi/include/include/highs/mip/HighsDomainChange.h +51 -0
  1220. casadi/include/include/highs/mip/HighsDynamicRowMatrix.h +105 -0
  1221. casadi/include/include/highs/mip/HighsGFkSolve.h +441 -0
  1222. casadi/include/include/highs/mip/HighsImplications.h +146 -0
  1223. casadi/include/include/highs/mip/HighsLpAggregator.h +53 -0
  1224. casadi/include/include/highs/mip/HighsLpRelaxation.h +355 -0
  1225. casadi/include/include/highs/mip/HighsMipSolver.h +103 -0
  1226. casadi/include/include/highs/mip/HighsMipSolverData.h +193 -0
  1227. casadi/include/include/highs/mip/HighsModkSeparator.h +63 -0
  1228. casadi/include/include/highs/mip/HighsNodeQueue.h +312 -0
  1229. casadi/include/include/highs/mip/HighsObjectiveFunction.h +74 -0
  1230. casadi/include/include/highs/mip/HighsPathSeparator.h +42 -0
  1231. casadi/include/include/highs/mip/HighsPrimalHeuristics.h +68 -0
  1232. casadi/include/include/highs/mip/HighsPseudocost.h +351 -0
  1233. casadi/include/include/highs/mip/HighsRedcostFixing.h +45 -0
  1234. casadi/include/include/highs/mip/HighsSearch.h +243 -0
  1235. casadi/include/include/highs/mip/HighsSeparation.h +44 -0
  1236. casadi/include/include/highs/mip/HighsSeparator.h +56 -0
  1237. casadi/include/include/highs/mip/HighsTableauSeparator.h +37 -0
  1238. casadi/include/include/highs/mip/HighsTransformedLp.h +66 -0
  1239. casadi/include/include/highs/model/HighsHessian.h +49 -0
  1240. casadi/include/include/highs/model/HighsHessianUtils.h +47 -0
  1241. casadi/include/include/highs/model/HighsModel.h +43 -0
  1242. casadi/include/include/highs/parallel/HighsBinarySemaphore.h +113 -0
  1243. casadi/include/include/highs/parallel/HighsCacheAlign.h +87 -0
  1244. casadi/include/include/highs/parallel/HighsCombinable.h +121 -0
  1245. casadi/include/include/highs/parallel/HighsMutex.h +128 -0
  1246. casadi/include/include/highs/parallel/HighsParallel.h +128 -0
  1247. casadi/include/include/highs/parallel/HighsRaceTimer.h +43 -0
  1248. casadi/include/include/highs/parallel/HighsSchedulerConstants.h +24 -0
  1249. casadi/include/include/highs/parallel/HighsSpinMutex.h +53 -0
  1250. casadi/include/include/highs/parallel/HighsSplitDeque.h +583 -0
  1251. casadi/include/include/highs/parallel/HighsTask.h +176 -0
  1252. casadi/include/include/highs/parallel/HighsTaskExecutor.h +209 -0
  1253. casadi/include/include/highs/presolve/HPresolve.h +352 -0
  1254. casadi/include/include/highs/presolve/HPresolveAnalysis.h +54 -0
  1255. casadi/include/include/highs/presolve/HighsPostsolveStack.h +883 -0
  1256. casadi/include/include/highs/presolve/HighsSymmetry.h +283 -0
  1257. casadi/include/include/highs/presolve/ICrash.h +121 -0
  1258. casadi/include/include/highs/presolve/ICrashUtil.h +65 -0
  1259. casadi/include/include/highs/presolve/ICrashX.h +26 -0
  1260. casadi/include/include/highs/presolve/PresolveComponent.h +93 -0
  1261. casadi/include/include/highs/qpsolver/a_asm.hpp +56 -0
  1262. casadi/include/include/highs/qpsolver/a_quass.hpp +12 -0
  1263. casadi/include/include/highs/qpsolver/perturbation.hpp +8 -0
  1264. casadi/include/include/highs/qpsolver/quass.hpp +20 -0
  1265. casadi/include/include/highs/qpsolver/scaling.hpp +8 -0
  1266. casadi/include/include/highs/qpsolver/vector.hpp +235 -0
  1267. casadi/include/include/highs/simplex/HApp.h +422 -0
  1268. casadi/include/include/highs/simplex/HEkk.h +369 -0
  1269. casadi/include/include/highs/simplex/HEkkDual.h +515 -0
  1270. casadi/include/include/highs/simplex/HEkkDualRHS.h +138 -0
  1271. casadi/include/include/highs/simplex/HEkkDualRow.h +204 -0
  1272. casadi/include/include/highs/simplex/HEkkPrimal.h +190 -0
  1273. casadi/include/include/highs/simplex/HSimplex.h +47 -0
  1274. casadi/include/include/highs/simplex/HSimplexDebug.h +51 -0
  1275. casadi/include/include/highs/simplex/HSimplexNla.h +184 -0
  1276. casadi/include/include/highs/simplex/HSimplexReport.h +24 -0
  1277. casadi/include/include/highs/simplex/HighsSimplexAnalysis.h +375 -0
  1278. casadi/include/include/highs/simplex/SimplexConst.h +274 -0
  1279. casadi/include/include/highs/simplex/SimplexStruct.h +264 -0
  1280. casadi/include/include/highs/simplex/SimplexTimer.h +427 -0
  1281. casadi/include/include/highs/test/DevKkt.h +146 -0
  1282. casadi/include/include/highs/test/KktCh2.h +82 -0
  1283. casadi/include/include/highs/util/FactorTimer.h +224 -0
  1284. casadi/include/include/highs/util/HFactor.h +558 -0
  1285. casadi/include/include/highs/util/HFactorConst.h +84 -0
  1286. casadi/include/include/highs/util/HFactorDebug.h +58 -0
  1287. casadi/include/include/highs/util/HSet.h +92 -0
  1288. casadi/include/include/highs/util/HVector.h +25 -0
  1289. casadi/include/include/highs/util/HVectorBase.h +105 -0
  1290. casadi/include/include/highs/util/HighsCDouble.h +310 -0
  1291. casadi/include/include/highs/util/HighsComponent.h +56 -0
  1292. casadi/include/include/highs/util/HighsDataStack.h +86 -0
  1293. casadi/include/include/highs/util/HighsDisjointSets.h +110 -0
  1294. casadi/include/include/highs/util/HighsHash.h +1270 -0
  1295. casadi/include/include/highs/util/HighsHashTree.h +1443 -0
  1296. casadi/include/include/highs/util/HighsInt.h +39 -0
  1297. casadi/include/include/highs/util/HighsIntegers.h +216 -0
  1298. casadi/include/include/highs/util/HighsLinearSumBounds.h +160 -0
  1299. casadi/include/include/highs/util/HighsMatrixPic.h +40 -0
  1300. casadi/include/include/highs/util/HighsMatrixSlice.h +561 -0
  1301. casadi/include/include/highs/util/HighsMatrixUtils.h +57 -0
  1302. casadi/include/include/highs/util/HighsRandom.h +233 -0
  1303. casadi/include/include/highs/util/HighsRbTree.h +455 -0
  1304. casadi/include/include/highs/util/HighsSort.h +134 -0
  1305. casadi/include/include/highs/util/HighsSparseMatrix.h +144 -0
  1306. casadi/include/include/highs/util/HighsSparseVectorSum.h +98 -0
  1307. casadi/include/include/highs/util/HighsSplay.h +138 -0
  1308. casadi/include/include/highs/util/HighsTimer.h +334 -0
  1309. casadi/include/include/highs/util/HighsUtils.h +203 -0
  1310. casadi/include/include/highs/util/stringutil.h +39 -0
  1311. casadi/include/include/highs_export.h +42 -0
  1312. casadi/include/include/openblas/cblas.h +411 -0
  1313. casadi/include/include/openblas/f77blas.h +796 -0
  1314. casadi/include/include/openblas/lapack.h +22997 -0
  1315. casadi/include/include/openblas/lapacke.h +12665 -0
  1316. casadi/include/include/openblas/lapacke_config.h +119 -0
  1317. casadi/include/include/openblas/lapacke_example_aux.h +9 -0
  1318. casadi/include/include/openblas/lapacke_mangling.h +17 -0
  1319. casadi/include/include/openblas/lapacke_utils.h +582 -0
  1320. casadi/include/include/openblas/openblas/lapacke_mangling.h +17 -0
  1321. casadi/include/include/openblas/openblas_config.h +139 -0
  1322. casadi/include/include/osqp/auxil.h +181 -0
  1323. casadi/include/include/osqp/constants.h +129 -0
  1324. casadi/include/include/osqp/cs.h +180 -0
  1325. casadi/include/include/osqp/ctrlc.h +56 -0
  1326. casadi/include/include/osqp/error.h +38 -0
  1327. casadi/include/include/osqp/glob_opts.h +167 -0
  1328. casadi/include/include/osqp/lin_alg.h +216 -0
  1329. casadi/include/include/osqp/lin_sys.h +54 -0
  1330. casadi/include/include/osqp/osqp.h +430 -0
  1331. casadi/include/include/osqp/osqp_configure.h +49 -0
  1332. casadi/include/include/osqp/polish.h +25 -0
  1333. casadi/include/include/osqp/proj.h +37 -0
  1334. casadi/include/include/osqp/scaling.h +44 -0
  1335. casadi/include/include/osqp/types.h +326 -0
  1336. casadi/include/include/osqp/util.h +222 -0
  1337. casadi/include/include/proxsuite/config.hpp +68 -0
  1338. casadi/include/include/proxsuite/deprecated.hpp +56 -0
  1339. casadi/include/include/proxsuite/fwd.hpp +52 -0
  1340. casadi/include/include/proxsuite/helpers/common.hpp +70 -0
  1341. casadi/include/include/proxsuite/helpers/instruction-set.hpp +275 -0
  1342. casadi/include/include/proxsuite/helpers/optional.hpp +46 -0
  1343. casadi/include/include/proxsuite/helpers/tl-optional.hpp +2472 -0
  1344. casadi/include/include/proxsuite/helpers/version.hpp +39 -0
  1345. casadi/include/include/proxsuite/linalg/dense/core.hpp +863 -0
  1346. casadi/include/include/proxsuite/linalg/dense/factorize.hpp +375 -0
  1347. casadi/include/include/proxsuite/linalg/dense/ldlt.hpp +817 -0
  1348. casadi/include/include/proxsuite/linalg/dense/modify.hpp +333 -0
  1349. casadi/include/include/proxsuite/linalg/dense/solve.hpp +38 -0
  1350. casadi/include/include/proxsuite/linalg/dense/update.hpp +330 -0
  1351. casadi/include/include/proxsuite/linalg/sparse/core.hpp +531 -0
  1352. casadi/include/include/proxsuite/linalg/sparse/factorize.hpp +1303 -0
  1353. casadi/include/include/proxsuite/linalg/sparse/rowmod.hpp +443 -0
  1354. casadi/include/include/proxsuite/linalg/sparse/update.hpp +348 -0
  1355. casadi/include/include/proxsuite/linalg/veg/internal/assert_impl.hpp +20 -0
  1356. casadi/include/include/proxsuite/linalg/veg/internal/collection_algo.hpp +93 -0
  1357. casadi/include/include/proxsuite/linalg/veg/internal/dbg.hpp +15 -0
  1358. casadi/include/include/proxsuite/linalg/veg/internal/delete_special_members.hpp +77 -0
  1359. casadi/include/include/proxsuite/linalg/veg/internal/dyn_index.hpp +292 -0
  1360. casadi/include/include/proxsuite/linalg/veg/internal/epilogue.hpp +31 -0
  1361. casadi/include/include/proxsuite/linalg/veg/internal/external/hedley.ext.hpp +2074 -0
  1362. casadi/include/include/proxsuite/linalg/veg/internal/external/unhedley.ext.hpp +148 -0
  1363. casadi/include/include/proxsuite/linalg/veg/internal/fix_index.hpp +339 -0
  1364. casadi/include/include/proxsuite/linalg/veg/internal/has_asan.hpp +17 -0
  1365. casadi/include/include/proxsuite/linalg/veg/internal/integer_seq.hpp +248 -0
  1366. casadi/include/include/proxsuite/linalg/veg/internal/macros.hpp +1312 -0
  1367. casadi/include/include/proxsuite/linalg/veg/internal/narrow.hpp +46 -0
  1368. casadi/include/include/proxsuite/linalg/veg/internal/preprocessor.hpp +434 -0
  1369. casadi/include/include/proxsuite/linalg/veg/internal/prologue.hpp +157 -0
  1370. casadi/include/include/proxsuite/linalg/veg/internal/std.hpp +13 -0
  1371. casadi/include/include/proxsuite/linalg/veg/internal/terminate.hpp +22 -0
  1372. casadi/include/include/proxsuite/linalg/veg/internal/typedefs.hpp +58 -0
  1373. casadi/include/include/proxsuite/linalg/veg/memory/address.hpp +97 -0
  1374. casadi/include/include/proxsuite/linalg/veg/memory/alloc.hpp +352 -0
  1375. casadi/include/include/proxsuite/linalg/veg/memory/dynamic_stack.hpp +504 -0
  1376. casadi/include/include/proxsuite/linalg/veg/memory/placement.hpp +202 -0
  1377. casadi/include/include/proxsuite/linalg/veg/memory/stack_alloc.hpp +239 -0
  1378. casadi/include/include/proxsuite/linalg/veg/ref.hpp +148 -0
  1379. casadi/include/include/proxsuite/linalg/veg/slice.hpp +240 -0
  1380. casadi/include/include/proxsuite/linalg/veg/tuple.hpp +876 -0
  1381. casadi/include/include/proxsuite/linalg/veg/type_traits/alloc.hpp +169 -0
  1382. casadi/include/include/proxsuite/linalg/veg/type_traits/assignable.hpp +53 -0
  1383. casadi/include/include/proxsuite/linalg/veg/type_traits/constructible.hpp +217 -0
  1384. casadi/include/include/proxsuite/linalg/veg/type_traits/core.hpp +298 -0
  1385. casadi/include/include/proxsuite/linalg/veg/type_traits/invocable.hpp +47 -0
  1386. casadi/include/include/proxsuite/linalg/veg/type_traits/primitives.hpp +43 -0
  1387. casadi/include/include/proxsuite/linalg/veg/type_traits/tags.hpp +47 -0
  1388. casadi/include/include/proxsuite/linalg/veg/util/assert.hpp +48 -0
  1389. casadi/include/include/proxsuite/linalg/veg/util/dbg.hpp +6 -0
  1390. casadi/include/include/proxsuite/linalg/veg/util/defer.hpp +57 -0
  1391. casadi/include/include/proxsuite/linalg/veg/util/dynstack_alloc.hpp +19 -0
  1392. casadi/include/include/proxsuite/linalg/veg/util/get.hpp +153 -0
  1393. casadi/include/include/proxsuite/linalg/veg/util/index.hpp +6 -0
  1394. casadi/include/include/proxsuite/linalg/veg/util/unreachable.hpp +41 -0
  1395. casadi/include/include/proxsuite/linalg/veg/vec.hpp +1034 -0
  1396. casadi/include/include/proxsuite/proxqp/dense/dense.hpp +10 -0
  1397. casadi/include/include/proxsuite/proxqp/dense/fwd.hpp +55 -0
  1398. casadi/include/include/proxsuite/proxqp/dense/helpers.hpp +520 -0
  1399. casadi/include/include/proxsuite/proxqp/dense/linesearch.hpp +517 -0
  1400. casadi/include/include/proxsuite/proxqp/dense/model.hpp +147 -0
  1401. casadi/include/include/proxsuite/proxqp/dense/preconditioner/identity.hpp +113 -0
  1402. casadi/include/include/proxsuite/proxqp/dense/preconditioner/ruiz.hpp +571 -0
  1403. casadi/include/include/proxsuite/proxqp/dense/solver.hpp +1330 -0
  1404. casadi/include/include/proxsuite/proxqp/dense/utils.hpp +415 -0
  1405. casadi/include/include/proxsuite/proxqp/dense/views.hpp +1466 -0
  1406. casadi/include/include/proxsuite/proxqp/dense/workspace.hpp +264 -0
  1407. casadi/include/include/proxsuite/proxqp/dense/wrapper.hpp +491 -0
  1408. casadi/include/include/proxsuite/proxqp/results.hpp +212 -0
  1409. casadi/include/include/proxsuite/proxqp/settings.hpp +302 -0
  1410. casadi/include/include/proxsuite/proxqp/sparse/fwd.hpp +58 -0
  1411. casadi/include/include/proxsuite/proxqp/sparse/helpers.hpp +309 -0
  1412. casadi/include/include/proxsuite/proxqp/sparse/model.hpp +228 -0
  1413. casadi/include/include/proxsuite/proxqp/sparse/preconditioner/identity.hpp +64 -0
  1414. casadi/include/include/proxsuite/proxqp/sparse/preconditioner/ruiz.hpp +569 -0
  1415. casadi/include/include/proxsuite/proxqp/sparse/solver.hpp +1441 -0
  1416. casadi/include/include/proxsuite/proxqp/sparse/sparse.hpp +10 -0
  1417. casadi/include/include/proxsuite/proxqp/sparse/utils.hpp +815 -0
  1418. casadi/include/include/proxsuite/proxqp/sparse/views.hpp +63 -0
  1419. casadi/include/include/proxsuite/proxqp/sparse/workspace.hpp +790 -0
  1420. casadi/include/include/proxsuite/proxqp/sparse/wrapper.hpp +772 -0
  1421. casadi/include/include/proxsuite/proxqp/status.hpp +46 -0
  1422. casadi/include/include/proxsuite/proxqp/timings.hpp +101 -0
  1423. casadi/include/include/proxsuite/proxqp/utils/prints.hpp +47 -0
  1424. casadi/include/include/proxsuite/proxqp/utils/random_qp_problems.hpp +669 -0
  1425. casadi/include/include/proxsuite/serialization/archive.hpp +231 -0
  1426. casadi/include/include/proxsuite/serialization/eigen.hpp +107 -0
  1427. casadi/include/include/proxsuite/serialization/model.hpp +34 -0
  1428. casadi/include/include/proxsuite/serialization/results.hpp +74 -0
  1429. casadi/include/include/proxsuite/serialization/settings.hpp +60 -0
  1430. casadi/include/include/proxsuite/serialization/wrapper.hpp +24 -0
  1431. casadi/include/include/proxsuite/warning.hpp +35 -0
  1432. casadi/include/include/qdldl/qdldl.h +169 -0
  1433. casadi/include/include/qdldl/qdldl_types.h +23 -0
  1434. casadi/include/include/s_blas.h +78 -0
  1435. casadi/include/include/s_blas_64.h +73 -0
  1436. casadi/include/include/simde/arm/neon/aba.h +208 -0
  1437. casadi/include/include/simde/arm/neon/abd.h +384 -0
  1438. casadi/include/include/simde/arm/neon/abdl.h +147 -0
  1439. casadi/include/include/simde/arm/neon/abs.h +408 -0
  1440. casadi/include/include/simde/arm/neon/add.h +681 -0
  1441. casadi/include/include/simde/arm/neon/addl.h +127 -0
  1442. casadi/include/include/simde/arm/neon/addl_high.h +127 -0
  1443. casadi/include/include/simde/arm/neon/addlv.h +317 -0
  1444. casadi/include/include/simde/arm/neon/addv.h +447 -0
  1445. casadi/include/include/simde/arm/neon/addw.h +222 -0
  1446. casadi/include/include/simde/arm/neon/addw_high.h +193 -0
  1447. casadi/include/include/simde/arm/neon/and.h +552 -0
  1448. casadi/include/include/simde/arm/neon/bic.h +472 -0
  1449. casadi/include/include/simde/arm/neon/bsl.h +448 -0
  1450. casadi/include/include/simde/arm/neon/cagt.h +168 -0
  1451. casadi/include/include/simde/arm/neon/ceq.h +711 -0
  1452. casadi/include/include/simde/arm/neon/ceqz.h +335 -0
  1453. casadi/include/include/simde/arm/neon/cge.h +677 -0
  1454. casadi/include/include/simde/arm/neon/cgez.h +378 -0
  1455. casadi/include/include/simde/arm/neon/cgt.h +686 -0
  1456. casadi/include/include/simde/arm/neon/cgtz.h +380 -0
  1457. casadi/include/include/simde/arm/neon/cle.h +677 -0
  1458. casadi/include/include/simde/arm/neon/clez.h +378 -0
  1459. casadi/include/include/simde/arm/neon/cls.h +148 -0
  1460. casadi/include/include/simde/arm/neon/clt.h +679 -0
  1461. casadi/include/include/simde/arm/neon/cltz.h +263 -0
  1462. casadi/include/include/simde/arm/neon/clz.h +423 -0
  1463. casadi/include/include/simde/arm/neon/cnt.h +145 -0
  1464. casadi/include/include/simde/arm/neon/combine.h +343 -0
  1465. casadi/include/include/simde/arm/neon/create.h +186 -0
  1466. casadi/include/include/simde/arm/neon/cvt.h +492 -0
  1467. casadi/include/include/simde/arm/neon/dot.h +171 -0
  1468. casadi/include/include/simde/arm/neon/dot_lane.h +196 -0
  1469. casadi/include/include/simde/arm/neon/dup_lane.h +702 -0
  1470. casadi/include/include/simde/arm/neon/dup_n.h +534 -0
  1471. casadi/include/include/simde/arm/neon/eor.h +552 -0
  1472. casadi/include/include/simde/arm/neon/ext.h +887 -0
  1473. casadi/include/include/simde/arm/neon/get_high.h +260 -0
  1474. casadi/include/include/simde/arm/neon/get_lane.h +499 -0
  1475. casadi/include/include/simde/arm/neon/get_low.h +276 -0
  1476. casadi/include/include/simde/arm/neon/hadd.h +287 -0
  1477. casadi/include/include/simde/arm/neon/hsub.h +287 -0
  1478. casadi/include/include/simde/arm/neon/ld1.h +399 -0
  1479. casadi/include/include/simde/arm/neon/ld3.h +609 -0
  1480. casadi/include/include/simde/arm/neon/ld4.h +448 -0
  1481. casadi/include/include/simde/arm/neon/max.h +614 -0
  1482. casadi/include/include/simde/arm/neon/maxnm.h +215 -0
  1483. casadi/include/include/simde/arm/neon/maxv.h +400 -0
  1484. casadi/include/include/simde/arm/neon/min.h +660 -0
  1485. casadi/include/include/simde/arm/neon/minnm.h +215 -0
  1486. casadi/include/include/simde/arm/neon/minv.h +424 -0
  1487. casadi/include/include/simde/arm/neon/mla.h +530 -0
  1488. casadi/include/include/simde/arm/neon/mla_n.h +333 -0
  1489. casadi/include/include/simde/arm/neon/mlal.h +156 -0
  1490. casadi/include/include/simde/arm/neon/mlal_high.h +156 -0
  1491. casadi/include/include/simde/arm/neon/mlal_n.h +128 -0
  1492. casadi/include/include/simde/arm/neon/mls.h +264 -0
  1493. casadi/include/include/simde/arm/neon/mlsl.h +124 -0
  1494. casadi/include/include/simde/arm/neon/mlsl_high.h +124 -0
  1495. casadi/include/include/simde/arm/neon/mlsl_n.h +96 -0
  1496. casadi/include/include/simde/arm/neon/movl.h +208 -0
  1497. casadi/include/include/simde/arm/neon/movl_high.h +126 -0
  1498. casadi/include/include/simde/arm/neon/movn.h +195 -0
  1499. casadi/include/include/simde/arm/neon/movn_high.h +125 -0
  1500. casadi/include/include/simde/arm/neon/mul.h +594 -0
  1501. casadi/include/include/simde/arm/neon/mul_lane.h +472 -0
  1502. casadi/include/include/simde/arm/neon/mul_n.h +383 -0
  1503. casadi/include/include/simde/arm/neon/mull.h +236 -0
  1504. casadi/include/include/simde/arm/neon/mull_high.h +125 -0
  1505. casadi/include/include/simde/arm/neon/mull_n.h +158 -0
  1506. casadi/include/include/simde/arm/neon/mvn.h +426 -0
  1507. casadi/include/include/simde/arm/neon/neg.h +393 -0
  1508. casadi/include/include/simde/arm/neon/orn.h +505 -0
  1509. casadi/include/include/simde/arm/neon/orr.h +552 -0
  1510. casadi/include/include/simde/arm/neon/padal.h +211 -0
  1511. casadi/include/include/simde/arm/neon/padd.h +293 -0
  1512. casadi/include/include/simde/arm/neon/paddl.h +239 -0
  1513. casadi/include/include/simde/arm/neon/pmax.h +253 -0
  1514. casadi/include/include/simde/arm/neon/pmin.h +260 -0
  1515. casadi/include/include/simde/arm/neon/qabs.h +281 -0
  1516. casadi/include/include/simde/arm/neon/qadd.h +553 -0
  1517. casadi/include/include/simde/arm/neon/qdmulh.h +125 -0
  1518. casadi/include/include/simde/arm/neon/qdmull.h +125 -0
  1519. casadi/include/include/simde/arm/neon/qmovn.h +273 -0
  1520. casadi/include/include/simde/arm/neon/qmovn_high.h +127 -0
  1521. casadi/include/include/simde/arm/neon/qmovun.h +159 -0
  1522. casadi/include/include/simde/arm/neon/qneg.h +301 -0
  1523. casadi/include/include/simde/arm/neon/qrdmulh.h +165 -0
  1524. casadi/include/include/simde/arm/neon/qrdmulh_n.h +136 -0
  1525. casadi/include/include/simde/arm/neon/qshl.h +732 -0
  1526. casadi/include/include/simde/arm/neon/qsub.h +549 -0
  1527. casadi/include/include/simde/arm/neon/qtbl.h +455 -0
  1528. casadi/include/include/simde/arm/neon/qtbx.h +470 -0
  1529. casadi/include/include/simde/arm/neon/rbit.h +165 -0
  1530. casadi/include/include/simde/arm/neon/reinterpret.h +3101 -0
  1531. casadi/include/include/simde/arm/neon/rev16.h +137 -0
  1532. casadi/include/include/simde/arm/neon/rev32.h +235 -0
  1533. casadi/include/include/simde/arm/neon/rev64.h +358 -0
  1534. casadi/include/include/simde/arm/neon/rhadd.h +406 -0
  1535. casadi/include/include/simde/arm/neon/rnd.h +143 -0
  1536. casadi/include/include/simde/arm/neon/rndi.h +135 -0
  1537. casadi/include/include/simde/arm/neon/rndm.h +143 -0
  1538. casadi/include/include/simde/arm/neon/rndn.h +135 -0
  1539. casadi/include/include/simde/arm/neon/rndp.h +143 -0
  1540. casadi/include/include/simde/arm/neon/rshl.h +903 -0
  1541. casadi/include/include/simde/arm/neon/rshr_n.h +471 -0
  1542. casadi/include/include/simde/arm/neon/rsra_n.h +209 -0
  1543. casadi/include/include/simde/arm/neon/set_lane.h +422 -0
  1544. casadi/include/include/simde/arm/neon/shl.h +805 -0
  1545. casadi/include/include/simde/arm/neon/shl_n.h +560 -0
  1546. casadi/include/include/simde/arm/neon/shr_n.h +612 -0
  1547. casadi/include/include/simde/arm/neon/sra_n.h +202 -0
  1548. casadi/include/include/simde/arm/neon/st1.h +353 -0
  1549. casadi/include/include/simde/arm/neon/st1_lane.h +363 -0
  1550. casadi/include/include/simde/arm/neon/st3.h +426 -0
  1551. casadi/include/include/simde/arm/neon/st4.h +445 -0
  1552. casadi/include/include/simde/arm/neon/sub.h +659 -0
  1553. casadi/include/include/simde/arm/neon/subl.h +127 -0
  1554. casadi/include/include/simde/arm/neon/subw.h +221 -0
  1555. casadi/include/include/simde/arm/neon/subw_high.h +222 -0
  1556. casadi/include/include/simde/arm/neon/tbl.h +224 -0
  1557. casadi/include/include/simde/arm/neon/tbx.h +247 -0
  1558. casadi/include/include/simde/arm/neon/trn.h +252 -0
  1559. casadi/include/include/simde/arm/neon/trn1.h +500 -0
  1560. casadi/include/include/simde/arm/neon/trn2.h +499 -0
  1561. casadi/include/include/simde/arm/neon/tst.h +540 -0
  1562. casadi/include/include/simde/arm/neon/types.h +683 -0
  1563. casadi/include/include/simde/arm/neon/uqadd.h +325 -0
  1564. casadi/include/include/simde/arm/neon/uzp.h +252 -0
  1565. casadi/include/include/simde/arm/neon/uzp1.h +643 -0
  1566. casadi/include/include/simde/arm/neon/uzp2.h +647 -0
  1567. casadi/include/include/simde/arm/neon/zip.h +252 -0
  1568. casadi/include/include/simde/arm/neon/zip1.h +625 -0
  1569. casadi/include/include/simde/arm/neon/zip2.h +625 -0
  1570. casadi/include/include/simde/arm/neon.h +166 -0
  1571. casadi/include/include/simde/check.h +276 -0
  1572. casadi/include/include/simde/debug-trap.h +85 -0
  1573. casadi/include/include/simde/hedley.h +1971 -0
  1574. casadi/include/include/simde/simde-align.h +449 -0
  1575. casadi/include/include/simde/simde-arch.h +532 -0
  1576. casadi/include/include/simde/simde-common.h +890 -0
  1577. casadi/include/include/simde/simde-complex.h +148 -0
  1578. casadi/include/include/simde/simde-constify.h +397 -0
  1579. casadi/include/include/simde/simde-detect-clang.h +109 -0
  1580. casadi/include/include/simde/simde-diagnostic.h +428 -0
  1581. casadi/include/include/simde/simde-features.h +522 -0
  1582. casadi/include/include/simde/simde-math.h +1805 -0
  1583. casadi/include/include/simde/x86/avx.h +6193 -0
  1584. casadi/include/include/simde/x86/avx2.h +5660 -0
  1585. casadi/include/include/simde/x86/avx512/2intersect.h +250 -0
  1586. casadi/include/include/simde/x86/avx512/abs.h +562 -0
  1587. casadi/include/include/simde/x86/avx512/add.h +641 -0
  1588. casadi/include/include/simde/x86/avx512/adds.h +390 -0
  1589. casadi/include/include/simde/x86/avx512/and.h +305 -0
  1590. casadi/include/include/simde/x86/avx512/andnot.h +193 -0
  1591. casadi/include/include/simde/x86/avx512/avg.h +258 -0
  1592. casadi/include/include/simde/x86/avx512/blend.h +293 -0
  1593. casadi/include/include/simde/x86/avx512/broadcast.h +897 -0
  1594. casadi/include/include/simde/x86/avx512/cast.h +324 -0
  1595. casadi/include/include/simde/x86/avx512/cmp.h +587 -0
  1596. casadi/include/include/simde/x86/avx512/cmpeq.h +179 -0
  1597. casadi/include/include/simde/x86/avx512/cmpge.h +104 -0
  1598. casadi/include/include/simde/x86/avx512/cmpgt.h +189 -0
  1599. casadi/include/include/simde/x86/avx512/cmple.h +103 -0
  1600. casadi/include/include/simde/x86/avx512/cmplt.h +123 -0
  1601. casadi/include/include/simde/x86/avx512/copysign.h +86 -0
  1602. casadi/include/include/simde/x86/avx512/cvt.h +122 -0
  1603. casadi/include/include/simde/x86/avx512/cvts.h +723 -0
  1604. casadi/include/include/simde/x86/avx512/div.h +162 -0
  1605. casadi/include/include/simde/x86/avx512/extract.h +198 -0
  1606. casadi/include/include/simde/x86/avx512/fmadd.h +136 -0
  1607. casadi/include/include/simde/x86/avx512/fmsub.h +108 -0
  1608. casadi/include/include/simde/x86/avx512/fnmadd.h +108 -0
  1609. casadi/include/include/simde/x86/avx512/fnmsub.h +108 -0
  1610. casadi/include/include/simde/x86/avx512/insert.h +193 -0
  1611. casadi/include/include/simde/x86/avx512/kshift.h +152 -0
  1612. casadi/include/include/simde/x86/avx512/load.h +67 -0
  1613. casadi/include/include/simde/x86/avx512/loadu.h +113 -0
  1614. casadi/include/include/simde/x86/avx512/lzcnt.h +209 -0
  1615. casadi/include/include/simde/x86/avx512/madd.h +155 -0
  1616. casadi/include/include/simde/x86/avx512/maddubs.h +159 -0
  1617. casadi/include/include/simde/x86/avx512/max.h +587 -0
  1618. casadi/include/include/simde/x86/avx512/min.h +587 -0
  1619. casadi/include/include/simde/x86/avx512/mov.h +859 -0
  1620. casadi/include/include/simde/x86/avx512/mov_mask.h +372 -0
  1621. casadi/include/include/simde/x86/avx512/movm.h +460 -0
  1622. casadi/include/include/simde/x86/avx512/mul.h +279 -0
  1623. casadi/include/include/simde/x86/avx512/mulhi.h +65 -0
  1624. casadi/include/include/simde/x86/avx512/mulhrs.h +65 -0
  1625. casadi/include/include/simde/x86/avx512/mullo.h +117 -0
  1626. casadi/include/include/simde/x86/avx512/negate.h +88 -0
  1627. casadi/include/include/simde/x86/avx512/or.h +252 -0
  1628. casadi/include/include/simde/x86/avx512/packs.h +122 -0
  1629. casadi/include/include/simde/x86/avx512/packus.h +122 -0
  1630. casadi/include/include/simde/x86/avx512/permutex2var.h +1645 -0
  1631. casadi/include/include/simde/x86/avx512/permutexvar.h +1180 -0
  1632. casadi/include/include/simde/x86/avx512/sad.h +77 -0
  1633. casadi/include/include/simde/x86/avx512/set.h +477 -0
  1634. casadi/include/include/simde/x86/avx512/set1.h +331 -0
  1635. casadi/include/include/simde/x86/avx512/set4.h +140 -0
  1636. casadi/include/include/simde/x86/avx512/setone.h +66 -0
  1637. casadi/include/include/simde/x86/avx512/setr.h +144 -0
  1638. casadi/include/include/simde/x86/avx512/setr4.h +140 -0
  1639. casadi/include/include/simde/x86/avx512/setzero.h +90 -0
  1640. casadi/include/include/simde/x86/avx512/shuffle.h +176 -0
  1641. casadi/include/include/simde/x86/avx512/sll.h +247 -0
  1642. casadi/include/include/simde/x86/avx512/slli.h +179 -0
  1643. casadi/include/include/simde/x86/avx512/sllv.h +68 -0
  1644. casadi/include/include/simde/x86/avx512/sqrt.h +127 -0
  1645. casadi/include/include/simde/x86/avx512/sra.h +81 -0
  1646. casadi/include/include/simde/x86/avx512/srai.h +70 -0
  1647. casadi/include/include/simde/x86/avx512/srav.h +67 -0
  1648. casadi/include/include/simde/x86/avx512/srl.h +216 -0
  1649. casadi/include/include/simde/x86/avx512/srli.h +180 -0
  1650. casadi/include/include/simde/x86/avx512/srlv.h +282 -0
  1651. casadi/include/include/simde/x86/avx512/store.h +93 -0
  1652. casadi/include/include/simde/x86/avx512/storeu.h +93 -0
  1653. casadi/include/include/simde/x86/avx512/sub.h +351 -0
  1654. casadi/include/include/simde/x86/avx512/subs.h +222 -0
  1655. casadi/include/include/simde/x86/avx512/test.h +193 -0
  1656. casadi/include/include/simde/x86/avx512/types.h +380 -0
  1657. casadi/include/include/simde/x86/avx512/unpackhi.h +380 -0
  1658. casadi/include/include/simde/x86/avx512/unpacklo.h +104 -0
  1659. casadi/include/include/simde/x86/avx512/xor.h +263 -0
  1660. casadi/include/include/simde/x86/avx512/xorsign.h +72 -0
  1661. casadi/include/include/simde/x86/avx512.h +108 -0
  1662. casadi/include/include/simde/x86/clmul.h +414 -0
  1663. casadi/include/include/simde/x86/fma.h +724 -0
  1664. casadi/include/include/simde/x86/gfni.h +802 -0
  1665. casadi/include/include/simde/x86/mmx.h +2399 -0
  1666. casadi/include/include/simde/x86/sse.h +4471 -0
  1667. casadi/include/include/simde/x86/sse2.h +7389 -0
  1668. casadi/include/include/simde/x86/sse3.h +499 -0
  1669. casadi/include/include/simde/x86/sse4.1.h +2216 -0
  1670. casadi/include/include/simde/x86/sse4.2.h +347 -0
  1671. casadi/include/include/simde/x86/ssse3.h +1032 -0
  1672. casadi/include/include/simde/x86/svml.h +12139 -0
  1673. casadi/include/include/simde/x86/xop.h +3644 -0
  1674. casadi/include/include/sleqp/defs.h +58 -0
  1675. casadi/include/include/sleqp/export.h +42 -0
  1676. casadi/include/include/sleqp/pub_cmp.h +18 -0
  1677. casadi/include/include/sleqp/pub_dyn.h +140 -0
  1678. casadi/include/include/sleqp/pub_error.h +50 -0
  1679. casadi/include/include/sleqp/pub_func.h +257 -0
  1680. casadi/include/include/sleqp/pub_hess_struct.h +105 -0
  1681. casadi/include/include/sleqp/pub_iterate.h +88 -0
  1682. casadi/include/include/sleqp/pub_log.h +88 -0
  1683. casadi/include/include/sleqp/pub_lsq.h +158 -0
  1684. casadi/include/include/sleqp/pub_mem.h +52 -0
  1685. casadi/include/include/sleqp/pub_problem.h +213 -0
  1686. casadi/include/include/sleqp/pub_scale.h +150 -0
  1687. casadi/include/include/sleqp/pub_settings.h +162 -0
  1688. casadi/include/include/sleqp/pub_solver.h +155 -0
  1689. casadi/include/include/sleqp/pub_types.h +230 -0
  1690. casadi/include/include/sleqp/pub_working_set.h +135 -0
  1691. casadi/include/include/sleqp/sparse/pub_mat.h +153 -0
  1692. casadi/include/include/sleqp/sparse/pub_vec.h +336 -0
  1693. casadi/include/include/sleqp.h +38 -0
  1694. casadi/include/include/spral.h +13 -0
  1695. casadi/include/include/spral_lsmr.h +57 -0
  1696. casadi/include/include/spral_matrix_util.h +40 -0
  1697. casadi/include/include/spral_random.h +26 -0
  1698. casadi/include/include/spral_random_matrix.h +27 -0
  1699. casadi/include/include/spral_rutherford_boeing.h +51 -0
  1700. casadi/include/include/spral_scaling.h +139 -0
  1701. casadi/include/include/spral_ssids.h +121 -0
  1702. casadi/include/include/spral_ssmfe.h +268 -0
  1703. casadi/include/include/superscs/cones.h +185 -0
  1704. casadi/include/include/superscs/constants.h +144 -0
  1705. casadi/include/include/superscs/cs.h +109 -0
  1706. casadi/include/include/superscs/ctrlc.h +77 -0
  1707. casadi/include/include/superscs/directions.h +125 -0
  1708. casadi/include/include/superscs/glbopts.h +240 -0
  1709. casadi/include/include/superscs/linAlg.h +437 -0
  1710. casadi/include/include/superscs/linSys.h +205 -0
  1711. casadi/include/include/superscs/linsys/amatrix.h +77 -0
  1712. casadi/include/include/superscs/linsys/common.h +49 -0
  1713. casadi/include/include/superscs/normalize.h +138 -0
  1714. casadi/include/include/superscs/scs.h +656 -0
  1715. casadi/include/include/superscs/scs_blas.h +79 -0
  1716. casadi/include/include/superscs/scs_parser.h +187 -0
  1717. casadi/include/include/superscs/unit_test_util.h +210 -0
  1718. casadi/include/include/superscs/util.h +354 -0
  1719. casadi/include/include/trlib/trlib_eigen_inverse.h +118 -0
  1720. casadi/include/include/trlib/trlib_krylov.h +493 -0
  1721. casadi/include/include/trlib/trlib_leftmost.h +181 -0
  1722. casadi/include/include/trlib/trlib_private.h +109 -0
  1723. casadi/include/include/trlib/trlib_quadratic_zero.h +57 -0
  1724. casadi/include/include/trlib/trlib_tri_factor.h +409 -0
  1725. casadi/include/include/trlib/trlib_types.h +36 -0
  1726. casadi/include/include/trlib.h +44 -0
  1727. casadi/include/licenses/alpaqa-external/LICENSE +165 -0
  1728. casadi/include/licenses/highs-external/LICENSE +1 -1
  1729. casadi/include/licenses/sleqp-external/LICENSE +165 -0
  1730. casadi/include/licenses/trlib-external/LICENSE +21 -0
  1731. casadi/include/trlib/trlib_eigen_inverse.h +118 -0
  1732. casadi/include/trlib/trlib_krylov.h +493 -0
  1733. casadi/include/trlib/trlib_leftmost.h +181 -0
  1734. casadi/include/trlib/trlib_private.h +109 -0
  1735. casadi/include/trlib/trlib_quadratic_zero.h +57 -0
  1736. casadi/include/trlib/trlib_tri_factor.h +409 -0
  1737. casadi/include/trlib/trlib_types.h +36 -0
  1738. casadi/lib64/libtinyxml2.a +0 -0
  1739. casadi/libCbc.la +3 -3
  1740. casadi/libCbc.so +0 -0
  1741. casadi/libCbc.so.3 +0 -0
  1742. casadi/libCbc.so.3.10.11 +0 -0
  1743. casadi/libCbcSolver.la +3 -3
  1744. casadi/libCbcSolver.so +0 -0
  1745. casadi/libCbcSolver.so.3 +0 -0
  1746. casadi/libCbcSolver.so.3.10.11 +0 -0
  1747. casadi/libCgl.la +2 -2
  1748. casadi/libCgl.so +0 -0
  1749. casadi/libCgl.so.1 +0 -0
  1750. casadi/libCgl.so.1.10.8 +0 -0
  1751. casadi/libClp.la +2 -2
  1752. casadi/libClp.so +0 -0
  1753. casadi/libClp.so.1 +0 -0
  1754. casadi/libClp.so.1.14.9 +0 -0
  1755. casadi/libClpSolver.la +2 -2
  1756. casadi/libClpSolver.so +0 -0
  1757. casadi/libClpSolver.so.1 +0 -0
  1758. casadi/libClpSolver.so.1.14.9 +0 -0
  1759. casadi/libCoinUtils.la +2 -2
  1760. casadi/libCoinUtils.so +0 -0
  1761. casadi/libCoinUtils.so.3 +0 -0
  1762. casadi/libCoinUtils.so.3.11.10 +0 -0
  1763. casadi/libFortranHighs.so +0 -0
  1764. casadi/libOsi.la +2 -2
  1765. casadi/libOsiCbc.la +3 -3
  1766. casadi/libOsiCbc.so +0 -0
  1767. casadi/libOsiCbc.so.3 +0 -0
  1768. casadi/libOsiCbc.so.3.10.11 +0 -0
  1769. casadi/libOsiClp.la +2 -2
  1770. casadi/libOsiClp.so +0 -0
  1771. casadi/libOsiClp.so.1 +0 -0
  1772. casadi/libOsiClp.so.1.14.9 +0 -0
  1773. casadi/libOsiCommonTests.la +2 -2
  1774. casadi/libOsiCommonTests.so +0 -0
  1775. casadi/libOsiCommonTests.so.1 +0 -0
  1776. casadi/libOsiCommonTests.so.1.13.9 +0 -0
  1777. casadi/libalpaqa-dl-loader.so +0 -0
  1778. casadi/libalpaqa-dl-loader.so.1.0.0 +0 -0
  1779. casadi/libalpaqa.so +0 -0
  1780. casadi/libalpaqa.so.1.0.0 +0 -0
  1781. casadi/libbonmin.la +3 -3
  1782. casadi/libbonmin.so +0 -0
  1783. casadi/libbonmin.so.4 +0 -0
  1784. casadi/libbonmin.so.4.8.9 +0 -0
  1785. casadi/libcasadi.so +0 -0
  1786. casadi/libcasadi.so.3.7 +0 -0
  1787. casadi/libcasadi_conic_cbc.so +0 -0
  1788. casadi/libcasadi_conic_cbc.so.3.7 +0 -0
  1789. casadi/libcasadi_conic_clp.so +0 -0
  1790. casadi/libcasadi_conic_clp.so.3.7 +0 -0
  1791. casadi/libcasadi_conic_cplex.so +0 -0
  1792. casadi/libcasadi_conic_cplex.so.3.7 +0 -0
  1793. casadi/libcasadi_conic_gurobi.so +0 -0
  1794. casadi/libcasadi_conic_gurobi.so.3.7 +0 -0
  1795. casadi/libcasadi_conic_highs.so +0 -0
  1796. casadi/libcasadi_conic_highs.so.3.7 +0 -0
  1797. casadi/libcasadi_conic_hpipm.so +0 -0
  1798. casadi/libcasadi_conic_hpipm.so.3.7 +0 -0
  1799. casadi/libcasadi_conic_ipqp.so +0 -0
  1800. casadi/libcasadi_conic_ipqp.so.3.7 +0 -0
  1801. casadi/libcasadi_conic_nlpsol.so +0 -0
  1802. casadi/libcasadi_conic_nlpsol.so.3.7 +0 -0
  1803. casadi/libcasadi_conic_osqp.so +0 -0
  1804. casadi/libcasadi_conic_osqp.so.3.7 +0 -0
  1805. casadi/libcasadi_conic_proxqp.so +0 -0
  1806. casadi/libcasadi_conic_proxqp.so.3.7 +0 -0
  1807. casadi/libcasadi_conic_qpoases.so +0 -0
  1808. casadi/libcasadi_conic_qpoases.so.3.7 +0 -0
  1809. casadi/libcasadi_conic_qrqp.so +0 -0
  1810. casadi/libcasadi_conic_qrqp.so.3.7 +0 -0
  1811. casadi/libcasadi_conic_superscs.so +0 -0
  1812. casadi/libcasadi_conic_superscs.so.3.7 +0 -0
  1813. casadi/libcasadi_integrator_collocation.so +0 -0
  1814. casadi/libcasadi_integrator_collocation.so.3.7 +0 -0
  1815. casadi/libcasadi_integrator_cvodes.so +0 -0
  1816. casadi/libcasadi_integrator_cvodes.so.3.7 +0 -0
  1817. casadi/libcasadi_integrator_idas.so +0 -0
  1818. casadi/libcasadi_integrator_idas.so.3.7 +0 -0
  1819. casadi/libcasadi_interpolant_bspline.so +0 -0
  1820. casadi/libcasadi_interpolant_bspline.so.3.7 +0 -0
  1821. casadi/libcasadi_interpolant_linear.so +0 -0
  1822. casadi/libcasadi_interpolant_linear.so.3.7 +0 -0
  1823. casadi/libcasadi_linsol_lapacklu.so +0 -0
  1824. casadi/libcasadi_linsol_lapacklu.so.3.7 +0 -0
  1825. casadi/libcasadi_linsol_lapackqr.so +0 -0
  1826. casadi/libcasadi_linsol_lapackqr.so.3.7 +0 -0
  1827. casadi/libcasadi_linsol_ldl.so +0 -0
  1828. casadi/libcasadi_linsol_ldl.so.3.7 +0 -0
  1829. casadi/libcasadi_linsol_mumps.so +0 -0
  1830. casadi/libcasadi_linsol_mumps.so.3.7 +0 -0
  1831. casadi/libcasadi_linsol_qr.so +0 -0
  1832. casadi/libcasadi_linsol_qr.so.3.7 +0 -0
  1833. casadi/libcasadi_linsol_symbolicqr.so +0 -0
  1834. casadi/libcasadi_linsol_symbolicqr.so.3.7 +0 -0
  1835. casadi/libcasadi_nlpsol_alpaqa.so +0 -0
  1836. casadi/libcasadi_nlpsol_alpaqa.so.3.7 +0 -0
  1837. casadi/libcasadi_nlpsol_ampl.so +0 -0
  1838. casadi/libcasadi_nlpsol_ampl.so.3.7 +0 -0
  1839. casadi/libcasadi_nlpsol_blocksqp.so +0 -0
  1840. casadi/libcasadi_nlpsol_blocksqp.so.3.7 +0 -0
  1841. casadi/libcasadi_nlpsol_bonmin.so +0 -0
  1842. casadi/libcasadi_nlpsol_bonmin.so.3.7 +0 -0
  1843. casadi/libcasadi_nlpsol_feasiblesqpmethod.so +0 -0
  1844. casadi/libcasadi_nlpsol_feasiblesqpmethod.so.3.7 +0 -0
  1845. casadi/libcasadi_nlpsol_ipopt.so +0 -0
  1846. casadi/libcasadi_nlpsol_ipopt.so.3.7 +0 -0
  1847. casadi/libcasadi_nlpsol_knitro.so +0 -0
  1848. casadi/libcasadi_nlpsol_knitro.so.3.7 +0 -0
  1849. casadi/libcasadi_nlpsol_qrsqp.so +0 -0
  1850. casadi/libcasadi_nlpsol_qrsqp.so.3.7 +0 -0
  1851. casadi/libcasadi_nlpsol_scpgen.so +0 -0
  1852. casadi/libcasadi_nlpsol_scpgen.so.3.7 +0 -0
  1853. casadi/libcasadi_nlpsol_sleqp.so +0 -0
  1854. casadi/libcasadi_nlpsol_sleqp.so.3.7 +0 -0
  1855. casadi/libcasadi_nlpsol_snopt.so +0 -0
  1856. casadi/libcasadi_nlpsol_snopt.so.3.7 +0 -0
  1857. casadi/libcasadi_nlpsol_sqpmethod.so +0 -0
  1858. casadi/libcasadi_nlpsol_sqpmethod.so.3.7 +0 -0
  1859. casadi/libcasadi_nlpsol_worhp.so +0 -0
  1860. casadi/libcasadi_nlpsol_worhp.so.3.7 +0 -0
  1861. casadi/libcasadi_rootfinder_fast_newton.so +0 -0
  1862. casadi/libcasadi_rootfinder_fast_newton.so.3.7 +0 -0
  1863. casadi/libcasadi_rootfinder_newton.so +0 -0
  1864. casadi/libcasadi_rootfinder_newton.so.3.7 +0 -0
  1865. casadi/libcasadi_sundials_common.so +0 -0
  1866. casadi/libcasadi_sundials_common.so.3.7 +0 -0
  1867. casadi/libhighs.so +0 -0
  1868. casadi/libhighs.so.1.6 +0 -0
  1869. casadi/libhighs.so.1.6.0 +0 -0
  1870. casadi/libindirect.a +0 -0
  1871. casadi/liblinsys.a +0 -0
  1872. casadi/libosqp.a +0 -0
  1873. casadi/libqdldl.a +0 -0
  1874. casadi/libsleqp.so +0 -0
  1875. casadi/libsleqp.so.1.0.1 +0 -0
  1876. casadi/libspral.a +0 -0
  1877. casadi/libsuperscs.a +0 -0
  1878. casadi/libtrlib.so +0 -0
  1879. casadi/libtrlib.so.0.4 +0 -0
  1880. casadi/pkgconfig/blas.pc +11 -0
  1881. casadi/pkgconfig/bonmin.pc +1 -1
  1882. casadi/pkgconfig/casadi.pc +1 -1
  1883. casadi/pkgconfig/cbc.pc +2 -2
  1884. casadi/pkgconfig/cgl.pc +2 -2
  1885. casadi/pkgconfig/clp.pc +1 -1
  1886. casadi/pkgconfig/coinutils.pc +1 -1
  1887. casadi/pkgconfig/highs.pc +3 -3
  1888. casadi/pkgconfig/lapack.pc +11 -0
  1889. casadi/pkgconfig/openblas.pc +1 -1
  1890. casadi/pkgconfig/osi-cbc.pc +1 -1
  1891. casadi/pkgconfig/osi-clp.pc +1 -1
  1892. casadi/pkgconfig/osi-unittests.pc +1 -1
  1893. casadi/pkgconfig/osi.pc +1 -1
  1894. casadi/pkgconfig/proxsuite.pc +22 -0
  1895. casadi/pkgconfig/sleqp.pc +10 -0
  1896. casadi-3.6.4.dist-info/METADATA +37 -0
  1897. casadi-3.6.4.dist-info/RECORD +3209 -0
  1898. casadi/libCbc.so.3.10.6 +0 -0
  1899. casadi/libCbcSolver.so.3.10.6 +0 -0
  1900. casadi/libCgl.so.1.10.4 +0 -0
  1901. casadi/libClp.so.1.14.7 +0 -0
  1902. casadi/libClpSolver.so.1.14.7 +0 -0
  1903. casadi/libCoinUtils.so.3.11.6 +0 -0
  1904. casadi/libOsiCbc.so.3.10.6 +0 -0
  1905. casadi/libOsiClp.so.1.14.7 +0 -0
  1906. casadi/libOsiCommonTests.so.1.13.7 +0 -0
  1907. casadi/libbonmin.so.4.8.8 +0 -0
  1908. casadi/libhighs.so.1.4 +0 -0
  1909. casadi/libhighs.so.1.4.0 +0 -0
  1910. casadi-3.6.2.dist-info/METADATA +0 -37
  1911. casadi-3.6.2.dist-info/RECORD +0 -1597
  1912. /casadi/include/{blasfeo.h → include/blasfeo.h} +0 -0
  1913. /casadi/include/{blasfeo_block_size.h → include/blasfeo_block_size.h} +0 -0
  1914. /casadi/include/{blasfeo_common.h → include/blasfeo_common.h} +0 -0
  1915. /casadi/include/{blasfeo_d_aux.h → include/blasfeo_d_aux.h} +0 -0
  1916. /casadi/include/{blasfeo_d_aux_ext_dep.h → include/blasfeo_d_aux_ext_dep.h} +0 -0
  1917. /casadi/include/{blasfeo_d_aux_ext_dep_ref.h → include/blasfeo_d_aux_ext_dep_ref.h} +0 -0
  1918. /casadi/include/{blasfeo_d_aux_old.h → include/blasfeo_d_aux_old.h} +0 -0
  1919. /casadi/include/{blasfeo_d_aux_ref.h → include/blasfeo_d_aux_ref.h} +0 -0
  1920. /casadi/include/{blasfeo_d_aux_test.h → include/blasfeo_d_aux_test.h} +0 -0
  1921. /casadi/include/{blasfeo_d_blas.h → include/blasfeo_d_blas.h} +0 -0
  1922. /casadi/include/{blasfeo_d_blas_api.h → include/blasfeo_d_blas_api.h} +0 -0
  1923. /casadi/include/{blasfeo_d_blasfeo_api.h → include/blasfeo_d_blasfeo_api.h} +0 -0
  1924. /casadi/include/{blasfeo_d_blasfeo_api_ref.h → include/blasfeo_d_blasfeo_api_ref.h} +0 -0
  1925. /casadi/include/{blasfeo_d_blasfeo_hp_api.h → include/blasfeo_d_blasfeo_hp_api.h} +0 -0
  1926. /casadi/include/{blasfeo_d_blasfeo_ref_api.h → include/blasfeo_d_blasfeo_ref_api.h} +0 -0
  1927. /casadi/include/{blasfeo_d_kernel.h → include/blasfeo_d_kernel.h} +0 -0
  1928. /casadi/include/{blasfeo_i_aux_ext_dep.h → include/blasfeo_i_aux_ext_dep.h} +0 -0
  1929. /casadi/include/{blasfeo_m_aux.h → include/blasfeo_m_aux.h} +0 -0
  1930. /casadi/include/{blasfeo_memory.h → include/blasfeo_memory.h} +0 -0
  1931. /casadi/include/{blasfeo_naming.h → include/blasfeo_naming.h} +0 -0
  1932. /casadi/include/{blasfeo_processor_features.h → include/blasfeo_processor_features.h} +0 -0
  1933. /casadi/include/{blasfeo_s_aux.h → include/blasfeo_s_aux.h} +0 -0
  1934. /casadi/include/{blasfeo_s_aux_ext_dep.h → include/blasfeo_s_aux_ext_dep.h} +0 -0
  1935. /casadi/include/{blasfeo_s_aux_ext_dep_ref.h → include/blasfeo_s_aux_ext_dep_ref.h} +0 -0
  1936. /casadi/include/{blasfeo_s_aux_old.h → include/blasfeo_s_aux_old.h} +0 -0
  1937. /casadi/include/{blasfeo_s_aux_ref.h → include/blasfeo_s_aux_ref.h} +0 -0
  1938. /casadi/include/{blasfeo_s_aux_test.h → include/blasfeo_s_aux_test.h} +0 -0
  1939. /casadi/include/{blasfeo_s_blas.h → include/blasfeo_s_blas.h} +0 -0
  1940. /casadi/include/{blasfeo_s_blas_api.h → include/blasfeo_s_blas_api.h} +0 -0
  1941. /casadi/include/{blasfeo_s_blasfeo_api.h → include/blasfeo_s_blasfeo_api.h} +0 -0
  1942. /casadi/include/{blasfeo_s_blasfeo_api_ref.h → include/blasfeo_s_blasfeo_api_ref.h} +0 -0
  1943. /casadi/include/{blasfeo_s_blasfeo_ref_api.h → include/blasfeo_s_blasfeo_ref_api.h} +0 -0
  1944. /casadi/include/{blasfeo_s_kernel.h → include/blasfeo_s_kernel.h} +0 -0
  1945. /casadi/include/{blasfeo_stdlib.h → include/blasfeo_stdlib.h} +0 -0
  1946. /casadi/include/{blasfeo_target.h → include/blasfeo_target.h} +0 -0
  1947. /casadi/include/{blasfeo_timing.h → include/blasfeo_timing.h} +0 -0
  1948. /casadi/include/{blasfeo_v_aux_ext_dep.h → include/blasfeo_v_aux_ext_dep.h} +0 -0
  1949. /casadi/include/{hpipm_aux_mem.h → include/hpipm_aux_mem.h} +0 -0
  1950. /casadi/include/{hpipm_aux_string.h → include/hpipm_aux_string.h} +0 -0
  1951. /casadi/include/{hpipm_common.h → include/hpipm_common.h} +0 -0
  1952. /casadi/include/{hpipm_d_cast_qcqp.h → include/hpipm_d_cast_qcqp.h} +0 -0
  1953. /casadi/include/{hpipm_d_cond.h → include/hpipm_d_cond.h} +0 -0
  1954. /casadi/include/{hpipm_d_cond_aux.h → include/hpipm_d_cond_aux.h} +0 -0
  1955. /casadi/include/{hpipm_d_cond_qcqp.h → include/hpipm_d_cond_qcqp.h} +0 -0
  1956. /casadi/include/{hpipm_d_core_qp_ipm.h → include/hpipm_d_core_qp_ipm.h} +0 -0
  1957. /casadi/include/{hpipm_d_core_qp_ipm_aux.h → include/hpipm_d_core_qp_ipm_aux.h} +0 -0
  1958. /casadi/include/{hpipm_d_dense_qcqp.h → include/hpipm_d_dense_qcqp.h} +0 -0
  1959. /casadi/include/{hpipm_d_dense_qcqp_dim.h → include/hpipm_d_dense_qcqp_dim.h} +0 -0
  1960. /casadi/include/{hpipm_d_dense_qcqp_ipm.h → include/hpipm_d_dense_qcqp_ipm.h} +0 -0
  1961. /casadi/include/{hpipm_d_dense_qcqp_res.h → include/hpipm_d_dense_qcqp_res.h} +0 -0
  1962. /casadi/include/{hpipm_d_dense_qcqp_sol.h → include/hpipm_d_dense_qcqp_sol.h} +0 -0
  1963. /casadi/include/{hpipm_d_dense_qcqp_utils.h → include/hpipm_d_dense_qcqp_utils.h} +0 -0
  1964. /casadi/include/{hpipm_d_dense_qp.h → include/hpipm_d_dense_qp.h} +0 -0
  1965. /casadi/include/{hpipm_d_dense_qp_dim.h → include/hpipm_d_dense_qp_dim.h} +0 -0
  1966. /casadi/include/{hpipm_d_dense_qp_ipm.h → include/hpipm_d_dense_qp_ipm.h} +0 -0
  1967. /casadi/include/{hpipm_d_dense_qp_kkt.h → include/hpipm_d_dense_qp_kkt.h} +0 -0
  1968. /casadi/include/{hpipm_d_dense_qp_res.h → include/hpipm_d_dense_qp_res.h} +0 -0
  1969. /casadi/include/{hpipm_d_dense_qp_sol.h → include/hpipm_d_dense_qp_sol.h} +0 -0
  1970. /casadi/include/{hpipm_d_dense_qp_utils.h → include/hpipm_d_dense_qp_utils.h} +0 -0
  1971. /casadi/include/{hpipm_d_ocp_qcqp.h → include/hpipm_d_ocp_qcqp.h} +0 -0
  1972. /casadi/include/{hpipm_d_ocp_qcqp_dim.h → include/hpipm_d_ocp_qcqp_dim.h} +0 -0
  1973. /casadi/include/{hpipm_d_ocp_qcqp_ipm.h → include/hpipm_d_ocp_qcqp_ipm.h} +0 -0
  1974. /casadi/include/{hpipm_d_ocp_qcqp_red.h → include/hpipm_d_ocp_qcqp_red.h} +0 -0
  1975. /casadi/include/{hpipm_d_ocp_qcqp_res.h → include/hpipm_d_ocp_qcqp_res.h} +0 -0
  1976. /casadi/include/{hpipm_d_ocp_qcqp_sol.h → include/hpipm_d_ocp_qcqp_sol.h} +0 -0
  1977. /casadi/include/{hpipm_d_ocp_qcqp_utils.h → include/hpipm_d_ocp_qcqp_utils.h} +0 -0
  1978. /casadi/include/{hpipm_d_ocp_qp.h → include/hpipm_d_ocp_qp.h} +0 -0
  1979. /casadi/include/{hpipm_d_ocp_qp_dim.h → include/hpipm_d_ocp_qp_dim.h} +0 -0
  1980. /casadi/include/{hpipm_d_ocp_qp_ipm.h → include/hpipm_d_ocp_qp_ipm.h} +0 -0
  1981. /casadi/include/{hpipm_d_ocp_qp_kkt.h → include/hpipm_d_ocp_qp_kkt.h} +0 -0
  1982. /casadi/include/{hpipm_d_ocp_qp_red.h → include/hpipm_d_ocp_qp_red.h} +0 -0
  1983. /casadi/include/{hpipm_d_ocp_qp_res.h → include/hpipm_d_ocp_qp_res.h} +0 -0
  1984. /casadi/include/{hpipm_d_ocp_qp_sol.h → include/hpipm_d_ocp_qp_sol.h} +0 -0
  1985. /casadi/include/{hpipm_d_ocp_qp_utils.h → include/hpipm_d_ocp_qp_utils.h} +0 -0
  1986. /casadi/include/{hpipm_d_part_cond.h → include/hpipm_d_part_cond.h} +0 -0
  1987. /casadi/include/{hpipm_d_part_cond_qcqp.h → include/hpipm_d_part_cond_qcqp.h} +0 -0
  1988. /casadi/include/{hpipm_d_sim_erk.h → include/hpipm_d_sim_erk.h} +0 -0
  1989. /casadi/include/{hpipm_d_sim_rk.h → include/hpipm_d_sim_rk.h} +0 -0
  1990. /casadi/include/{hpipm_d_tree_ocp_qcqp.h → include/hpipm_d_tree_ocp_qcqp.h} +0 -0
  1991. /casadi/include/{hpipm_d_tree_ocp_qcqp_dim.h → include/hpipm_d_tree_ocp_qcqp_dim.h} +0 -0
  1992. /casadi/include/{hpipm_d_tree_ocp_qcqp_ipm.h → include/hpipm_d_tree_ocp_qcqp_ipm.h} +0 -0
  1993. /casadi/include/{hpipm_d_tree_ocp_qcqp_res.h → include/hpipm_d_tree_ocp_qcqp_res.h} +0 -0
  1994. /casadi/include/{hpipm_d_tree_ocp_qcqp_sol.h → include/hpipm_d_tree_ocp_qcqp_sol.h} +0 -0
  1995. /casadi/include/{hpipm_d_tree_ocp_qcqp_utils.h → include/hpipm_d_tree_ocp_qcqp_utils.h} +0 -0
  1996. /casadi/include/{hpipm_d_tree_ocp_qp.h → include/hpipm_d_tree_ocp_qp.h} +0 -0
  1997. /casadi/include/{hpipm_d_tree_ocp_qp_dim.h → include/hpipm_d_tree_ocp_qp_dim.h} +0 -0
  1998. /casadi/include/{hpipm_d_tree_ocp_qp_ipm.h → include/hpipm_d_tree_ocp_qp_ipm.h} +0 -0
  1999. /casadi/include/{hpipm_d_tree_ocp_qp_kkt.h → include/hpipm_d_tree_ocp_qp_kkt.h} +0 -0
  2000. /casadi/include/{hpipm_d_tree_ocp_qp_res.h → include/hpipm_d_tree_ocp_qp_res.h} +0 -0
  2001. /casadi/include/{hpipm_d_tree_ocp_qp_sol.h → include/hpipm_d_tree_ocp_qp_sol.h} +0 -0
  2002. /casadi/include/{hpipm_d_tree_ocp_qp_utils.h → include/hpipm_d_tree_ocp_qp_utils.h} +0 -0
  2003. /casadi/include/{hpipm_m_dense_qp.h → include/hpipm_m_dense_qp.h} +0 -0
  2004. /casadi/include/{hpipm_m_dense_qp_dim.h → include/hpipm_m_dense_qp_dim.h} +0 -0
  2005. /casadi/include/{hpipm_m_ocp_qp.h → include/hpipm_m_ocp_qp.h} +0 -0
  2006. /casadi/include/{hpipm_m_ocp_qp_ipm_hard.h → include/hpipm_m_ocp_qp_ipm_hard.h} +0 -0
  2007. /casadi/include/{hpipm_m_ocp_qp_kkt.h → include/hpipm_m_ocp_qp_kkt.h} +0 -0
  2008. /casadi/include/{hpipm_s_cast_qcqp.h → include/hpipm_s_cast_qcqp.h} +0 -0
  2009. /casadi/include/{hpipm_s_cond.h → include/hpipm_s_cond.h} +0 -0
  2010. /casadi/include/{hpipm_s_cond_aux.h → include/hpipm_s_cond_aux.h} +0 -0
  2011. /casadi/include/{hpipm_s_cond_qcqp.h → include/hpipm_s_cond_qcqp.h} +0 -0
  2012. /casadi/include/{hpipm_s_core_qp_ipm.h → include/hpipm_s_core_qp_ipm.h} +0 -0
  2013. /casadi/include/{hpipm_s_core_qp_ipm_aux.h → include/hpipm_s_core_qp_ipm_aux.h} +0 -0
  2014. /casadi/include/{hpipm_s_dense_qcqp.h → include/hpipm_s_dense_qcqp.h} +0 -0
  2015. /casadi/include/{hpipm_s_dense_qcqp_dim.h → include/hpipm_s_dense_qcqp_dim.h} +0 -0
  2016. /casadi/include/{hpipm_s_dense_qcqp_ipm.h → include/hpipm_s_dense_qcqp_ipm.h} +0 -0
  2017. /casadi/include/{hpipm_s_dense_qcqp_res.h → include/hpipm_s_dense_qcqp_res.h} +0 -0
  2018. /casadi/include/{hpipm_s_dense_qcqp_sol.h → include/hpipm_s_dense_qcqp_sol.h} +0 -0
  2019. /casadi/include/{hpipm_s_dense_qcqp_utils.h → include/hpipm_s_dense_qcqp_utils.h} +0 -0
  2020. /casadi/include/{hpipm_s_dense_qp.h → include/hpipm_s_dense_qp.h} +0 -0
  2021. /casadi/include/{hpipm_s_dense_qp_dim.h → include/hpipm_s_dense_qp_dim.h} +0 -0
  2022. /casadi/include/{hpipm_s_dense_qp_ipm.h → include/hpipm_s_dense_qp_ipm.h} +0 -0
  2023. /casadi/include/{hpipm_s_dense_qp_kkt.h → include/hpipm_s_dense_qp_kkt.h} +0 -0
  2024. /casadi/include/{hpipm_s_dense_qp_res.h → include/hpipm_s_dense_qp_res.h} +0 -0
  2025. /casadi/include/{hpipm_s_dense_qp_sol.h → include/hpipm_s_dense_qp_sol.h} +0 -0
  2026. /casadi/include/{hpipm_s_dense_qp_utils.h → include/hpipm_s_dense_qp_utils.h} +0 -0
  2027. /casadi/include/{hpipm_s_ocp_qcqp.h → include/hpipm_s_ocp_qcqp.h} +0 -0
  2028. /casadi/include/{hpipm_s_ocp_qcqp_dim.h → include/hpipm_s_ocp_qcqp_dim.h} +0 -0
  2029. /casadi/include/{hpipm_s_ocp_qcqp_ipm.h → include/hpipm_s_ocp_qcqp_ipm.h} +0 -0
  2030. /casadi/include/{hpipm_s_ocp_qcqp_red.h → include/hpipm_s_ocp_qcqp_red.h} +0 -0
  2031. /casadi/include/{hpipm_s_ocp_qcqp_res.h → include/hpipm_s_ocp_qcqp_res.h} +0 -0
  2032. /casadi/include/{hpipm_s_ocp_qcqp_sol.h → include/hpipm_s_ocp_qcqp_sol.h} +0 -0
  2033. /casadi/include/{hpipm_s_ocp_qcqp_utils.h → include/hpipm_s_ocp_qcqp_utils.h} +0 -0
  2034. /casadi/include/{hpipm_s_ocp_qp.h → include/hpipm_s_ocp_qp.h} +0 -0
  2035. /casadi/include/{hpipm_s_ocp_qp_dim.h → include/hpipm_s_ocp_qp_dim.h} +0 -0
  2036. /casadi/include/{hpipm_s_ocp_qp_ipm.h → include/hpipm_s_ocp_qp_ipm.h} +0 -0
  2037. /casadi/include/{hpipm_s_ocp_qp_kkt.h → include/hpipm_s_ocp_qp_kkt.h} +0 -0
  2038. /casadi/include/{hpipm_s_ocp_qp_red.h → include/hpipm_s_ocp_qp_red.h} +0 -0
  2039. /casadi/include/{hpipm_s_ocp_qp_res.h → include/hpipm_s_ocp_qp_res.h} +0 -0
  2040. /casadi/include/{hpipm_s_ocp_qp_sol.h → include/hpipm_s_ocp_qp_sol.h} +0 -0
  2041. /casadi/include/{hpipm_s_ocp_qp_utils.h → include/hpipm_s_ocp_qp_utils.h} +0 -0
  2042. /casadi/include/{hpipm_s_part_cond.h → include/hpipm_s_part_cond.h} +0 -0
  2043. /casadi/include/{hpipm_s_part_cond_qcqp.h → include/hpipm_s_part_cond_qcqp.h} +0 -0
  2044. /casadi/include/{hpipm_s_sim_erk.h → include/hpipm_s_sim_erk.h} +0 -0
  2045. /casadi/include/{hpipm_s_sim_rk.h → include/hpipm_s_sim_rk.h} +0 -0
  2046. /casadi/include/{hpipm_s_tree_ocp_qcqp.h → include/hpipm_s_tree_ocp_qcqp.h} +0 -0
  2047. /casadi/include/{hpipm_s_tree_ocp_qcqp_dim.h → include/hpipm_s_tree_ocp_qcqp_dim.h} +0 -0
  2048. /casadi/include/{hpipm_s_tree_ocp_qcqp_ipm.h → include/hpipm_s_tree_ocp_qcqp_ipm.h} +0 -0
  2049. /casadi/include/{hpipm_s_tree_ocp_qcqp_res.h → include/hpipm_s_tree_ocp_qcqp_res.h} +0 -0
  2050. /casadi/include/{hpipm_s_tree_ocp_qcqp_sol.h → include/hpipm_s_tree_ocp_qcqp_sol.h} +0 -0
  2051. /casadi/include/{hpipm_s_tree_ocp_qcqp_utils.h → include/hpipm_s_tree_ocp_qcqp_utils.h} +0 -0
  2052. /casadi/include/{hpipm_s_tree_ocp_qp.h → include/hpipm_s_tree_ocp_qp.h} +0 -0
  2053. /casadi/include/{hpipm_s_tree_ocp_qp_dim.h → include/hpipm_s_tree_ocp_qp_dim.h} +0 -0
  2054. /casadi/include/{hpipm_s_tree_ocp_qp_ipm.h → include/hpipm_s_tree_ocp_qp_ipm.h} +0 -0
  2055. /casadi/include/{hpipm_s_tree_ocp_qp_kkt.h → include/hpipm_s_tree_ocp_qp_kkt.h} +0 -0
  2056. /casadi/include/{hpipm_s_tree_ocp_qp_res.h → include/hpipm_s_tree_ocp_qp_res.h} +0 -0
  2057. /casadi/include/{hpipm_s_tree_ocp_qp_sol.h → include/hpipm_s_tree_ocp_qp_sol.h} +0 -0
  2058. /casadi/include/{hpipm_s_tree_ocp_qp_utils.h → include/hpipm_s_tree_ocp_qp_utils.h} +0 -0
  2059. /casadi/include/{hpipm_scenario_tree.h → include/hpipm_scenario_tree.h} +0 -0
  2060. /casadi/include/{hpipm_timing.h → include/hpipm_timing.h} +0 -0
  2061. /casadi/include/{hpipm_tree.h → include/hpipm_tree.h} +0 -0
  2062. /casadi/{libOsi.so.1.13.7 → libOsi.so.1.13.9} +0 -0
  2063. {casadi-3.6.2.dist-info → casadi-3.6.4.dist-info}/WHEEL +0 -0
@@ -1,6 +1,206 @@
1
1
 
2
2
  // File: index.xml
3
3
 
4
+ // File: classcasadi_1_1AlpaqaProblem.xml
5
+ %feature("docstring") casadi::AlpaqaProblem "
6
+
7
+ [INTERNAL] C++ includes: alpaqa_problem.hpp
8
+ ";
9
+
10
+ %feature("docstring") casadi::AlpaqaProblem::AlpaqaProblem(const
11
+ AlpaqaInterface &solver, AlpaqaMemory *mem) "
12
+
13
+ [INTERNAL] ";
14
+
15
+ %feature("docstring") casadi::AlpaqaProblem::~AlpaqaProblem "
16
+
17
+ [INTERNAL] ";
18
+
19
+ %feature("docstring") casadi::AlpaqaProblem::eval_f(crvec x) const "
20
+
21
+ [INTERNAL] ";
22
+
23
+ %feature("docstring") casadi::AlpaqaProblem::eval_grad_f(crvec x, rvec
24
+ grad_fx) const "
25
+
26
+ [INTERNAL] ";
27
+
28
+ %feature("docstring") casadi::AlpaqaProblem::eval_f_grad_f(crvec x, rvec
29
+ grad_fx) const "
30
+
31
+ [INTERNAL] ";
32
+
33
+ %feature("docstring") casadi::AlpaqaProblem::eval_g(crvec x, rvec g) const
34
+ "
35
+
36
+ [INTERNAL] ";
37
+
38
+ %feature("docstring") casadi::AlpaqaProblem::eval_grad_g_prod(crvec x,
39
+ crvec y, rvec grad_gxy) const "
40
+
41
+ [INTERNAL] ";
42
+
43
+ %feature("docstring") casadi::AlpaqaProblem::eval_grad_ps(crvec x, crvec y,
44
+ crvec S, rvec grad_ps, rvec work_n, rvec work_m) const "
45
+
46
+ [INTERNAL] ";
47
+
48
+ %feature("docstring") casadi::AlpaqaProblem::eval_ps_grad_ps(crvec x, crvec
49
+ y, crvec S, rvec grad_ps, rvec work_n, rvec work_m) const "
50
+
51
+ [INTERNAL] ";
52
+
53
+ %feature("docstring") casadi::AlpaqaProblem::eval_grad_L(crvec x, crvec y,
54
+ rvec grad_L, rvec work_n) const "
55
+
56
+ [INTERNAL] ";
57
+
58
+ %feature("docstring") casadi::AlpaqaProblem::eval_ps(crvec x, crvec y, crvec
59
+ S, rvec y) const "
60
+
61
+ [INTERNAL] ";
62
+
63
+ %feature("docstring") casadi::AlpaqaProblem::eval_grad_gi(crvec x, index_t
64
+ i, rvec grad_i) const "
65
+
66
+ [INTERNAL] ";
67
+
68
+ %feature("docstring") casadi::AlpaqaProblem::get_jac_g_num_nonzeros() const
69
+ "
70
+
71
+ [INTERNAL] ";
72
+
73
+ %feature("docstring") casadi::AlpaqaProblem::eval_jac_g(crvec x, rindexvec
74
+ inner_idx, rindexvec outer_ptr, rvec J_values) const "
75
+
76
+ [INTERNAL] ";
77
+
78
+ %feature("docstring") casadi::AlpaqaProblem::eval_hess_L_prod(crvec x,
79
+ crvec y, real_t scale, crvec v, rvec Hv) const "
80
+
81
+ [INTERNAL] ";
82
+
83
+ %feature("docstring") casadi::AlpaqaProblem::get_hess_L_num_nonzeros()
84
+ const "
85
+
86
+ [INTERNAL] ";
87
+
88
+ %feature("docstring") casadi::AlpaqaProblem::eval_hess_L(crvec x, crvec y,
89
+ real_t scale, rindexvec inner_idx, rindexvec outer_ptr, rvec H_values) const
90
+ "
91
+
92
+ [INTERNAL] ";
93
+
94
+ %feature("docstring") casadi::AlpaqaProblem::eval_hess_ps_prod(crvec x,
95
+ crvec y, crvec S, real_t scale, crvec v, rvec Hv) const "
96
+
97
+ [INTERNAL] ";
98
+
99
+ %feature("docstring") casadi::AlpaqaProblem::get_hess_ps_num_nonzeros()
100
+ const "
101
+
102
+ [INTERNAL] ";
103
+
104
+ %feature("docstring") casadi::AlpaqaProblem::eval_hess_ps(crvec x, crvec y,
105
+ crvec S, real_t scale, rindexvec inner_idx, rindexvec outer_ptr, rvec
106
+ H_values) const "
107
+
108
+ [INTERNAL] ";
109
+
110
+ %feature("docstring") casadi::AlpaqaProblem::provides_eval_grad_gi() const
111
+ "
112
+
113
+ [INTERNAL]
114
+
115
+ See:
116
+ TypeErasedProblem::provides_eval_grad_gi
117
+
118
+ Doc source:
119
+ https://github.com/casadi/casadi/blob/develop/casadi/interfaces/alpaqa/alpaqa_problem.hpp#L46
120
+
121
+ Implementation:
122
+ https://github.com/casadi/casadi/blob/develop/casadi/interfaces/alpaqa/alpaqa_problem.hpp#L46-L46
123
+
124
+ ";
125
+
126
+ %feature("docstring") casadi::AlpaqaProblem::provides_eval_jac_g() const "
127
+
128
+ [INTERNAL]
129
+
130
+ See:
131
+ TypeErasedProblem::provides_eval_jac_g
132
+
133
+ Doc source:
134
+ https://github.com/casadi/casadi/blob/develop/casadi/interfaces/alpaqa/alpaqa_problem.hpp#L48
135
+
136
+ Implementation:
137
+ https://github.com/casadi/casadi/blob/develop/casadi/interfaces/alpaqa/alpaqa_problem.hpp#L48-L48
138
+
139
+ ";
140
+
141
+ %feature("docstring") casadi::AlpaqaProblem::provides_eval_hess_L_prod()
142
+ const "
143
+
144
+ [INTERNAL]
145
+
146
+ See:
147
+ TypeErasedProblem::provides_eval_hess_L_prod
148
+
149
+ Doc source:
150
+ https://github.com/casadi/casadi/blob/develop/casadi/interfaces/alpaqa/alpaqa_problem.hpp#L50
151
+
152
+ Implementation:
153
+ https://github.com/casadi/casadi/blob/develop/casadi/interfaces/alpaqa/alpaqa_problem.hpp#L50-L50
154
+
155
+ ";
156
+
157
+ %feature("docstring") casadi::AlpaqaProblem::provides_eval_hess_L() const "
158
+
159
+ [INTERNAL]
160
+
161
+ See:
162
+ TypeErasedProblem::provides_eval_hess_L
163
+
164
+ Doc source:
165
+ https://github.com/casadi/casadi/blob/develop/casadi/interfaces/alpaqa/alpaqa_problem.hpp#L52
166
+
167
+ Implementation:
168
+ https://github.com/casadi/casadi/blob/develop/casadi/interfaces/alpaqa/alpaqa_problem.hpp#L52-L52
169
+
170
+ ";
171
+
172
+ %feature("docstring") casadi::AlpaqaProblem::provides_eval_hess_ps_prod()
173
+ const "
174
+
175
+ [INTERNAL]
176
+
177
+ See:
178
+ TypeErasedProblem::provides_eval_hess_ps_prod
179
+
180
+ Doc source:
181
+ https://github.com/casadi/casadi/blob/develop/casadi/interfaces/alpaqa/alpaqa_problem.hpp#L54
182
+
183
+ Implementation:
184
+ https://github.com/casadi/casadi/blob/develop/casadi/interfaces/alpaqa/alpaqa_problem.hpp#L54-L54
185
+
186
+ ";
187
+
188
+ %feature("docstring") casadi::AlpaqaProblem::provides_eval_hess_ps() const "
189
+
190
+ [INTERNAL]
191
+
192
+ See:
193
+ TypeErasedProblem::provides_eval_hess_ps
194
+
195
+ Doc source:
196
+ https://github.com/casadi/casadi/blob/develop/casadi/interfaces/alpaqa/alpaqa_problem.hpp#L56
197
+
198
+ Implementation:
199
+ https://github.com/casadi/casadi/blob/develop/casadi/interfaces/alpaqa/alpaqa_problem.hpp#L56-L56
200
+
201
+ ";
202
+
203
+
4
204
  // File: classcasadi_1_1Blocksqp.xml
5
205
  %feature("docstring") casadi::Blocksqp "
6
206
 
@@ -4720,6 +4920,12 @@ C++ includes: casadi_meta.hpp
4720
4920
  ";
4721
4921
 
4722
4922
 
4923
+ // File: classcasadi_1_1CasadiStructuredQP.xml
4924
+ %feature("docstring") casadi::CasadiStructuredQP "
4925
+
4926
+ [INTERNAL] ";
4927
+
4928
+
4723
4929
  // File: classcasadi_1_1ClangCompiler.xml
4724
4930
  %feature("docstring") casadi::ClangCompiler "
4725
4931
 
@@ -4756,7 +4962,7 @@ Doc source:
4756
4962
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L46
4757
4963
 
4758
4964
  Implementation:
4759
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L35-L169
4965
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L35-L180
4760
4966
 
4761
4967
  ";
4762
4968
 
@@ -4770,7 +4976,7 @@ Doc source:
4770
4976
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L49
4771
4977
 
4772
4978
  Implementation:
4773
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L277-L302
4979
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L288-L316
4774
4980
 
4775
4981
  ";
4776
4982
 
@@ -4783,7 +4989,7 @@ Doc source:
4783
4989
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L53
4784
4990
 
4785
4991
  Implementation:
4786
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L544-L650
4992
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L755-L861
4787
4993
 
4788
4994
  ";
4789
4995
 
@@ -4796,7 +5002,7 @@ Doc source:
4796
5002
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L57
4797
5003
 
4798
5004
  Implementation:
4799
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L304-L308
5005
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L318-L322
4800
5006
 
4801
5007
  ";
4802
5008
 
@@ -4816,7 +5022,7 @@ Doc source:
4816
5022
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L66
4817
5023
 
4818
5024
  Implementation:
4819
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L396-L441
5025
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L410-L464
4820
5026
 
4821
5027
  ";
4822
5028
 
@@ -4833,7 +5039,7 @@ Doc source:
4833
5039
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L69
4834
5040
 
4835
5041
  Implementation:
4836
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L731-L751
5042
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L942-L962
4837
5043
 
4838
5044
  ";
4839
5045
 
@@ -4847,7 +5053,7 @@ Doc source:
4847
5053
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L74
4848
5054
 
4849
5055
  Implementation:
4850
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L196-L275
5056
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L207-L286
4851
5057
 
4852
5058
  ";
4853
5059
 
@@ -4861,7 +5067,7 @@ Doc source:
4861
5067
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L77
4862
5068
 
4863
5069
  Implementation:
4864
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L775-L777
5070
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L986-L988
4865
5071
 
4866
5072
  ";
4867
5073
 
@@ -4875,7 +5081,7 @@ Doc source:
4875
5081
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L80
4876
5082
 
4877
5083
  Implementation:
4878
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L779-L782
5084
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L990-L993
4879
5085
 
4880
5086
  ";
4881
5087
 
@@ -4889,7 +5095,7 @@ Doc source:
4889
5095
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L83
4890
5096
 
4891
5097
  Implementation:
4892
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L784-L790
5098
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L995-L1001
4893
5099
 
4894
5100
  ";
4895
5101
 
@@ -4914,7 +5120,7 @@ Doc source:
4914
5120
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L94
4915
5121
 
4916
5122
  Implementation:
4917
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L800-L802
5123
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1011-L1013
4918
5124
 
4919
5125
  ";
4920
5126
 
@@ -4930,7 +5136,7 @@ Doc source:
4930
5136
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L99
4931
5137
 
4932
5138
  Implementation:
4933
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L824-L844
5139
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1035-L1055
4934
5140
 
4935
5141
  ";
4936
5142
 
@@ -4946,7 +5152,7 @@ Doc source:
4946
5152
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L104
4947
5153
 
4948
5154
  Implementation:
4949
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L846-L867
5155
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1057-L1078
4950
5156
 
4951
5157
  ";
4952
5158
 
@@ -4962,7 +5168,7 @@ Doc source:
4962
5168
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L109
4963
5169
 
4964
5170
  Implementation:
4965
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L869-L871
5171
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1080-L1082
4966
5172
 
4967
5173
  ";
4968
5174
 
@@ -4994,7 +5200,7 @@ Doc source:
4994
5200
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L129
4995
5201
 
4996
5202
  Implementation:
4997
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L889-L891
5203
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1100-L1102
4998
5204
 
4999
5205
  ";
5000
5206
 
@@ -5009,7 +5215,7 @@ Doc source:
5009
5215
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L226
5010
5216
 
5011
5217
  Implementation:
5012
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1384-L1406
5218
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1598-L1620
5013
5219
 
5014
5220
  ";
5015
5221
 
@@ -5035,7 +5241,7 @@ Doc source:
5035
5241
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L121
5036
5242
 
5037
5243
  Implementation:
5038
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L873-L887
5244
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1084-L1098
5039
5245
 
5040
5246
  ";
5041
5247
 
@@ -5051,7 +5257,7 @@ Doc source:
5051
5257
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L134
5052
5258
 
5053
5259
  Implementation:
5054
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L516-L521
5260
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L727-L732
5055
5261
 
5056
5262
  ";
5057
5263
 
@@ -5067,7 +5273,7 @@ Doc source:
5067
5273
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L139
5068
5274
 
5069
5275
  Implementation:
5070
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L523-L528
5276
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L734-L739
5071
5277
 
5072
5278
  ";
5073
5279
 
@@ -5083,7 +5289,7 @@ Doc source:
5083
5289
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L144
5084
5290
 
5085
5291
  Implementation:
5086
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L530-L535
5292
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L741-L746
5087
5293
 
5088
5294
  ";
5089
5295
 
@@ -5099,7 +5305,7 @@ Doc source:
5099
5305
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L149
5100
5306
 
5101
5307
  Implementation:
5102
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L537-L542
5308
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L748-L753
5103
5309
 
5104
5310
  ";
5105
5311
 
@@ -5115,7 +5321,7 @@ Doc source:
5115
5321
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L166
5116
5322
 
5117
5323
  Implementation:
5118
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1729-L1753
5324
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1943-L1967
5119
5325
 
5120
5326
  ";
5121
5327
 
@@ -5130,7 +5336,7 @@ Doc source:
5130
5336
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L181
5131
5337
 
5132
5338
  Implementation:
5133
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1776-L1779
5339
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1990-L1993
5134
5340
 
5135
5341
  ";
5136
5342
 
@@ -5146,7 +5352,7 @@ Doc source:
5146
5352
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L186
5147
5353
 
5148
5354
  Implementation:
5149
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1781-L1793
5355
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1995-L2007
5150
5356
 
5151
5357
  ";
5152
5358
 
@@ -5161,7 +5367,7 @@ Doc source:
5161
5367
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L191
5162
5368
 
5163
5369
  Implementation:
5164
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L171-L174
5370
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L182-L185
5165
5371
 
5166
5372
  ";
5167
5373
 
@@ -5176,7 +5382,7 @@ Doc source:
5176
5382
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L196
5177
5383
 
5178
5384
  Implementation:
5179
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L176-L194
5385
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L187-L205
5180
5386
 
5181
5387
  ";
5182
5388
 
@@ -5191,7 +5397,7 @@ Doc source:
5191
5397
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L201
5192
5398
 
5193
5399
  Implementation:
5194
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1795-L1806
5400
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2009-L2020
5195
5401
 
5196
5402
  ";
5197
5403
 
@@ -5207,7 +5413,7 @@ Doc source:
5207
5413
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L206
5208
5414
 
5209
5415
  Implementation:
5210
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1808-L1811
5416
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2022-L2025
5211
5417
 
5212
5418
  ";
5213
5419
 
@@ -5268,7 +5474,7 @@ Doc source:
5268
5474
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L233
5269
5475
 
5270
5476
  Implementation:
5271
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1408-L1417
5477
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1622-L1631
5272
5478
 
5273
5479
  ";
5274
5480
 
@@ -5290,7 +5496,7 @@ Doc source:
5290
5496
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L239
5291
5497
 
5292
5498
  Implementation:
5293
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1814-L1905
5499
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2028-L2119
5294
5500
 
5295
5501
  ";
5296
5502
 
@@ -5306,7 +5512,7 @@ Doc source:
5306
5512
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L246
5307
5513
 
5308
5514
  Implementation:
5309
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1491-L1497
5515
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1705-L1711
5310
5516
 
5311
5517
  ";
5312
5518
 
@@ -5320,7 +5526,7 @@ Doc source:
5320
5526
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L246
5321
5527
 
5322
5528
  Implementation:
5323
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1491-L1497
5529
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1705-L1711
5324
5530
 
5325
5531
  ";
5326
5532
 
@@ -5334,7 +5540,7 @@ Doc source:
5334
5540
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L246
5335
5541
 
5336
5542
  Implementation:
5337
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1491-L1497
5543
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1705-L1711
5338
5544
 
5339
5545
  ";
5340
5546
 
@@ -5350,7 +5556,7 @@ Doc source:
5350
5556
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L251
5351
5557
 
5352
5558
  Implementation:
5353
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1684-L1689
5559
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1898-L1903
5354
5560
 
5355
5561
  ";
5356
5562
 
@@ -5367,7 +5573,7 @@ Doc source:
5367
5573
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L257
5368
5574
 
5369
5575
  Implementation:
5370
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1691-L1696
5576
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1905-L1910
5371
5577
 
5372
5578
  ";
5373
5579
 
@@ -5383,7 +5589,7 @@ Doc source:
5383
5589
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L263
5384
5590
 
5385
5591
  Implementation:
5386
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1643-L1647
5592
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1857-L1861
5387
5593
 
5388
5594
  ";
5389
5595
 
@@ -5399,7 +5605,7 @@ Doc source:
5399
5605
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L271
5400
5606
 
5401
5607
  Implementation:
5402
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1649-L1653
5608
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1863-L1867
5403
5609
 
5404
5610
  ";
5405
5611
 
@@ -5415,7 +5621,7 @@ Doc source:
5415
5621
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L279
5416
5622
 
5417
5623
  Implementation:
5418
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1655-L1659
5624
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1869-L1873
5419
5625
 
5420
5626
  ";
5421
5627
 
@@ -5431,7 +5637,7 @@ Doc source:
5431
5637
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L286
5432
5638
 
5433
5639
  Implementation:
5434
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1661-L1665
5640
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1875-L1879
5435
5641
 
5436
5642
  ";
5437
5643
 
@@ -5447,7 +5653,7 @@ Doc source:
5447
5653
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L293
5448
5654
 
5449
5655
  Implementation:
5450
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1667-L1671
5656
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1881-L1885
5451
5657
 
5452
5658
  ";
5453
5659
 
@@ -5463,7 +5669,7 @@ Doc source:
5463
5669
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L300
5464
5670
 
5465
5671
  Implementation:
5466
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1673-L1677
5672
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1887-L1891
5467
5673
 
5468
5674
  ";
5469
5675
 
@@ -5479,7 +5685,7 @@ Doc source:
5479
5685
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L307
5480
5686
 
5481
5687
  Implementation:
5482
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1679-L1682
5688
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1893-L1896
5483
5689
 
5484
5690
  ";
5485
5691
 
@@ -5496,7 +5702,7 @@ Doc source:
5496
5702
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L312
5497
5703
 
5498
5704
  Implementation:
5499
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1698-L1705
5705
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1912-L1919
5500
5706
 
5501
5707
  ";
5502
5708
 
@@ -5510,7 +5716,7 @@ Doc source:
5510
5716
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L312
5511
5717
 
5512
5718
  Implementation:
5513
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1698-L1705
5719
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1912-L1919
5514
5720
 
5515
5721
  ";
5516
5722
 
@@ -5524,7 +5730,7 @@ Doc source:
5524
5730
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L312
5525
5731
 
5526
5732
  Implementation:
5527
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1698-L1705
5733
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1912-L1919
5528
5734
 
5529
5735
  ";
5530
5736
 
@@ -5541,7 +5747,7 @@ Doc source:
5541
5747
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L320
5542
5748
 
5543
5749
  Implementation:
5544
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1707-L1712
5750
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1921-L1926
5545
5751
 
5546
5752
  ";
5547
5753
 
@@ -5558,7 +5764,7 @@ Doc source:
5558
5764
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L326
5559
5765
 
5560
5766
  Implementation:
5561
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1714-L1719
5767
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1928-L1933
5562
5768
 
5563
5769
  ";
5564
5770
 
@@ -5574,7 +5780,7 @@ Doc source:
5574
5780
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L332
5575
5781
 
5576
5782
  Implementation:
5577
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1499-L1505
5783
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1713-L1719
5578
5784
 
5579
5785
  ";
5580
5786
 
@@ -5588,7 +5794,7 @@ Doc source:
5588
5794
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L332
5589
5795
 
5590
5796
  Implementation:
5591
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1499-L1505
5797
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1713-L1719
5592
5798
 
5593
5799
  ";
5594
5800
 
@@ -5602,7 +5808,7 @@ Doc source:
5602
5808
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L332
5603
5809
 
5604
5810
  Implementation:
5605
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1499-L1505
5811
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1713-L1719
5606
5812
 
5607
5813
  ";
5608
5814
 
@@ -5619,7 +5825,7 @@ Doc source:
5619
5825
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L338
5620
5826
 
5621
5827
  Implementation:
5622
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1507-L1515
5828
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1721-L1729
5623
5829
 
5624
5830
  ";
5625
5831
 
@@ -5633,7 +5839,7 @@ Doc source:
5633
5839
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L338
5634
5840
 
5635
5841
  Implementation:
5636
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1507-L1515
5842
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1721-L1729
5637
5843
 
5638
5844
  ";
5639
5845
 
@@ -5647,7 +5853,7 @@ Doc source:
5647
5853
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L338
5648
5854
 
5649
5855
  Implementation:
5650
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1507-L1515
5856
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1721-L1729
5651
5857
 
5652
5858
  ";
5653
5859
 
@@ -5661,7 +5867,7 @@ Doc source:
5661
5867
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L342
5662
5868
 
5663
5869
  Implementation:
5664
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1722-L1727
5870
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1936-L1941
5665
5871
 
5666
5872
  ";
5667
5873
 
@@ -5673,7 +5879,7 @@ Doc source:
5673
5879
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L342
5674
5880
 
5675
5881
  Implementation:
5676
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1722-L1727
5882
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1936-L1941
5677
5883
 
5678
5884
  ";
5679
5885
 
@@ -5685,7 +5891,7 @@ Doc source:
5685
5891
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L342
5686
5892
 
5687
5893
  Implementation:
5688
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1722-L1727
5894
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1936-L1941
5689
5895
 
5690
5896
  ";
5691
5897
 
@@ -5703,7 +5909,7 @@ Doc source:
5703
5909
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L347
5704
5910
 
5705
5911
  Implementation:
5706
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1517-L1528
5912
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1731-L1742
5707
5913
 
5708
5914
  ";
5709
5915
 
@@ -5721,7 +5927,7 @@ Doc source:
5721
5927
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L356
5722
5928
 
5723
5929
  Implementation:
5724
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1530-L1540
5930
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1744-L1754
5725
5931
 
5726
5932
  ";
5727
5933
 
@@ -5738,7 +5944,7 @@ Doc source:
5738
5944
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L366
5739
5945
 
5740
5946
  Implementation:
5741
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1542-L1548
5947
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1756-L1762
5742
5948
 
5743
5949
  ";
5744
5950
 
@@ -5756,7 +5962,7 @@ Doc source:
5756
5962
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L372
5757
5963
 
5758
5964
  Implementation:
5759
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1940-L1948
5965
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2154-L2162
5760
5966
 
5761
5967
  ";
5762
5968
 
@@ -5770,7 +5976,7 @@ Doc source:
5770
5976
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L372
5771
5977
 
5772
5978
  Implementation:
5773
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1940-L1948
5979
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2154-L2162
5774
5980
 
5775
5981
  ";
5776
5982
 
@@ -5784,7 +5990,7 @@ Doc source:
5784
5990
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L372
5785
5991
 
5786
5992
  Implementation:
5787
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1940-L1948
5993
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2154-L2162
5788
5994
 
5789
5995
  ";
5790
5996
 
@@ -5802,7 +6008,7 @@ Doc source:
5802
6008
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L381
5803
6009
 
5804
6010
  Implementation:
5805
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1951-L1960
6011
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2165-L2174
5806
6012
 
5807
6013
  ";
5808
6014
 
@@ -5816,7 +6022,7 @@ Doc source:
5816
6022
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L381
5817
6023
 
5818
6024
  Implementation:
5819
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1951-L1960
6025
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2165-L2174
5820
6026
 
5821
6027
  ";
5822
6028
 
@@ -5830,7 +6036,7 @@ Doc source:
5830
6036
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L381
5831
6037
 
5832
6038
  Implementation:
5833
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1951-L1960
6039
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2165-L2174
5834
6040
 
5835
6041
  ";
5836
6042
 
@@ -5847,7 +6053,7 @@ Doc source:
5847
6053
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L390
5848
6054
 
5849
6055
  Implementation:
5850
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1963-L1968
6056
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2177-L2182
5851
6057
 
5852
6058
  ";
5853
6059
 
@@ -5864,7 +6070,7 @@ Doc source:
5864
6070
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L396
5865
6071
 
5866
6072
  Implementation:
5867
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1971-L1977
6073
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2185-L2191
5868
6074
 
5869
6075
  ";
5870
6076
 
@@ -5878,7 +6084,7 @@ Doc source:
5878
6084
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L396
5879
6085
 
5880
6086
  Implementation:
5881
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1971-L1977
6087
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2185-L2191
5882
6088
 
5883
6089
  ";
5884
6090
 
@@ -5892,7 +6098,7 @@ Doc source:
5892
6098
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L396
5893
6099
 
5894
6100
  Implementation:
5895
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1971-L1977
6101
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2185-L2191
5896
6102
 
5897
6103
  ";
5898
6104
 
@@ -5909,7 +6115,7 @@ Doc source:
5909
6115
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L404
5910
6116
 
5911
6117
  Implementation:
5912
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1980-L1986
6118
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2194-L2200
5913
6119
 
5914
6120
  ";
5915
6121
 
@@ -5923,7 +6129,7 @@ Doc source:
5923
6129
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L404
5924
6130
 
5925
6131
  Implementation:
5926
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1980-L1986
6132
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2194-L2200
5927
6133
 
5928
6134
  ";
5929
6135
 
@@ -5937,7 +6143,7 @@ Doc source:
5937
6143
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L404
5938
6144
 
5939
6145
  Implementation:
5940
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1980-L1986
6146
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2194-L2200
5941
6147
 
5942
6148
  ";
5943
6149
 
@@ -5953,7 +6159,7 @@ Doc source:
5953
6159
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L412
5954
6160
 
5955
6161
  Implementation:
5956
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1989-L1992
6162
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2203-L2206
5957
6163
 
5958
6164
  ";
5959
6165
 
@@ -5967,7 +6173,7 @@ Doc source:
5967
6173
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L412
5968
6174
 
5969
6175
  Implementation:
5970
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1989-L1992
6176
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2203-L2206
5971
6177
 
5972
6178
  ";
5973
6179
 
@@ -5981,7 +6187,7 @@ Doc source:
5981
6187
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L412
5982
6188
 
5983
6189
  Implementation:
5984
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1989-L1992
6190
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2203-L2206
5985
6191
 
5986
6192
  ";
5987
6193
 
@@ -5997,7 +6203,7 @@ Doc source:
5997
6203
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L417
5998
6204
 
5999
6205
  Implementation:
6000
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1995-L1998
6206
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2209-L2212
6001
6207
 
6002
6208
  ";
6003
6209
 
@@ -6011,7 +6217,7 @@ Doc source:
6011
6217
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L417
6012
6218
 
6013
6219
  Implementation:
6014
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1995-L1998
6220
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2209-L2212
6015
6221
 
6016
6222
  ";
6017
6223
 
@@ -6025,7 +6231,7 @@ Doc source:
6025
6231
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L417
6026
6232
 
6027
6233
  Implementation:
6028
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1995-L1998
6234
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2209-L2212
6029
6235
 
6030
6236
  ";
6031
6237
 
@@ -6041,7 +6247,7 @@ Doc source:
6041
6247
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L422
6042
6248
 
6043
6249
  Implementation:
6044
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2037-L2040
6250
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2251-L2254
6045
6251
 
6046
6252
  ";
6047
6253
 
@@ -6055,7 +6261,7 @@ Doc source:
6055
6261
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L422
6056
6262
 
6057
6263
  Implementation:
6058
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2037-L2040
6264
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2251-L2254
6059
6265
 
6060
6266
  ";
6061
6267
 
@@ -6069,7 +6275,7 @@ Doc source:
6069
6275
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L422
6070
6276
 
6071
6277
  Implementation:
6072
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2037-L2040
6278
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2251-L2254
6073
6279
 
6074
6280
  ";
6075
6281
 
@@ -6085,7 +6291,7 @@ Doc source:
6085
6291
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L427
6086
6292
 
6087
6293
  Implementation:
6088
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2043-L2046
6294
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2257-L2260
6089
6295
 
6090
6296
  ";
6091
6297
 
@@ -6099,7 +6305,7 @@ Doc source:
6099
6305
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L427
6100
6306
 
6101
6307
  Implementation:
6102
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2043-L2046
6308
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2257-L2260
6103
6309
 
6104
6310
  ";
6105
6311
 
@@ -6113,7 +6319,7 @@ Doc source:
6113
6319
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L427
6114
6320
 
6115
6321
  Implementation:
6116
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2043-L2046
6322
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2257-L2260
6117
6323
 
6118
6324
  ";
6119
6325
 
@@ -6129,7 +6335,7 @@ Doc source:
6129
6335
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L432
6130
6336
 
6131
6337
  Implementation:
6132
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2001-L2004
6338
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2215-L2218
6133
6339
 
6134
6340
  ";
6135
6341
 
@@ -6145,7 +6351,7 @@ Doc source:
6145
6351
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L442
6146
6352
 
6147
6353
  Implementation:
6148
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2013-L2016
6354
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2227-L2230
6149
6355
 
6150
6356
  ";
6151
6357
 
@@ -6161,7 +6367,7 @@ Doc source:
6161
6367
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L437
6162
6368
 
6163
6369
  Implementation:
6164
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2007-L2010
6370
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2221-L2224
6165
6371
 
6166
6372
  ";
6167
6373
 
@@ -6177,7 +6383,7 @@ Doc source:
6177
6383
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L447
6178
6384
 
6179
6385
  Implementation:
6180
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2019-L2022
6386
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2233-L2236
6181
6387
 
6182
6388
  ";
6183
6389
 
@@ -6193,7 +6399,7 @@ Doc source:
6193
6399
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L452
6194
6400
 
6195
6401
  Implementation:
6196
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2025-L2028
6402
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2239-L2242
6197
6403
 
6198
6404
  ";
6199
6405
 
@@ -6207,7 +6413,7 @@ Doc source:
6207
6413
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L452
6208
6414
 
6209
6415
  Implementation:
6210
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2025-L2028
6416
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2239-L2242
6211
6417
 
6212
6418
  ";
6213
6419
 
@@ -6221,7 +6427,7 @@ Doc source:
6221
6427
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L452
6222
6428
 
6223
6429
  Implementation:
6224
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2025-L2028
6430
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2239-L2242
6225
6431
 
6226
6432
  ";
6227
6433
 
@@ -6237,7 +6443,7 @@ Doc source:
6237
6443
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L457
6238
6444
 
6239
6445
  Implementation:
6240
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2031-L2034
6446
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2245-L2248
6241
6447
 
6242
6448
  ";
6243
6449
 
@@ -6251,7 +6457,7 @@ Doc source:
6251
6457
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L457
6252
6458
 
6253
6459
  Implementation:
6254
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2031-L2034
6460
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2245-L2248
6255
6461
 
6256
6462
  ";
6257
6463
 
@@ -6265,7 +6471,7 @@ Doc source:
6265
6471
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L457
6266
6472
 
6267
6473
  Implementation:
6268
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2031-L2034
6474
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2245-L2248
6269
6475
 
6270
6476
  ";
6271
6477
 
@@ -6281,7 +6487,7 @@ Doc source:
6281
6487
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L462
6282
6488
 
6283
6489
  Implementation:
6284
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2061-L2064
6490
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2275-L2278
6285
6491
 
6286
6492
  ";
6287
6493
 
@@ -6295,7 +6501,7 @@ Doc source:
6295
6501
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L462
6296
6502
 
6297
6503
  Implementation:
6298
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2061-L2064
6504
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2275-L2278
6299
6505
 
6300
6506
  ";
6301
6507
 
@@ -6309,7 +6515,7 @@ Doc source:
6309
6515
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L462
6310
6516
 
6311
6517
  Implementation:
6312
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2061-L2064
6518
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2275-L2278
6313
6519
 
6314
6520
  ";
6315
6521
 
@@ -6332,7 +6538,7 @@ Doc source:
6332
6538
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L469
6333
6539
 
6334
6540
  Implementation:
6335
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2067-L2070
6541
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2281-L2284
6336
6542
 
6337
6543
  ";
6338
6544
 
@@ -6353,7 +6559,7 @@ Doc source:
6353
6559
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L469
6354
6560
 
6355
6561
  Implementation:
6356
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2067-L2070
6562
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2281-L2284
6357
6563
 
6358
6564
  ";
6359
6565
 
@@ -6374,7 +6580,7 @@ Doc source:
6374
6580
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L469
6375
6581
 
6376
6582
  Implementation:
6377
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2067-L2070
6583
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2281-L2284
6378
6584
 
6379
6585
  ";
6380
6586
 
@@ -6390,7 +6596,7 @@ Doc source:
6390
6596
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L474
6391
6597
 
6392
6598
  Implementation:
6393
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2049-L2052
6599
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2263-L2266
6394
6600
 
6395
6601
  ";
6396
6602
 
@@ -6406,7 +6612,7 @@ Doc source:
6406
6612
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L480
6407
6613
 
6408
6614
  Implementation:
6409
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2055-L2058
6615
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2269-L2272
6410
6616
 
6411
6617
  ";
6412
6618
 
@@ -6423,7 +6629,7 @@ Doc source:
6423
6629
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L486
6424
6630
 
6425
6631
  Implementation:
6426
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2098-L2103
6632
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2312-L2317
6427
6633
 
6428
6634
  ";
6429
6635
 
@@ -6439,7 +6645,7 @@ Doc source:
6439
6645
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L492
6440
6646
 
6441
6647
  Implementation:
6442
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2073-L2076
6648
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2287-L2290
6443
6649
 
6444
6650
  ";
6445
6651
 
@@ -6455,7 +6661,7 @@ Doc source:
6455
6661
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L497
6456
6662
 
6457
6663
  Implementation:
6458
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2079-L2082
6664
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2293-L2296
6459
6665
 
6460
6666
  ";
6461
6667
 
@@ -6472,7 +6678,7 @@ Doc source:
6472
6678
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L502
6473
6679
 
6474
6680
  Implementation:
6475
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2085-L2089
6681
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2299-L2303
6476
6682
 
6477
6683
  ";
6478
6684
 
@@ -6488,7 +6694,7 @@ Doc source:
6488
6694
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L508
6489
6695
 
6490
6696
  Implementation:
6491
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2092-L2095
6697
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2306-L2309
6492
6698
 
6493
6699
  ";
6494
6700
 
@@ -6502,7 +6708,7 @@ Doc source:
6502
6708
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L508
6503
6709
 
6504
6710
  Implementation:
6505
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2092-L2095
6711
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2306-L2309
6506
6712
 
6507
6713
  ";
6508
6714
 
@@ -6516,7 +6722,7 @@ Doc source:
6516
6722
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L508
6517
6723
 
6518
6724
  Implementation:
6519
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2092-L2095
6725
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2306-L2309
6520
6726
 
6521
6727
  ";
6522
6728
 
@@ -6531,7 +6737,7 @@ Doc source:
6531
6737
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L514
6532
6738
 
6533
6739
  Implementation:
6534
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1550-L1561
6740
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1764-L1775
6535
6741
 
6536
6742
  ";
6537
6743
 
@@ -6547,7 +6753,7 @@ Doc source:
6547
6753
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L519
6548
6754
 
6549
6755
  Implementation:
6550
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1907-L1911
6756
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2121-L2125
6551
6757
 
6552
6758
  ";
6553
6759
 
@@ -6563,7 +6769,7 @@ Doc source:
6563
6769
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L612
6564
6770
 
6565
6771
  Implementation:
6566
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L893-L1336
6772
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1104-L1550
6567
6773
 
6568
6774
  ";
6569
6775
 
@@ -6580,7 +6786,7 @@ Doc source:
6580
6786
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L617
6581
6787
 
6582
6788
  Implementation:
6583
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1914-L1937
6789
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2128-L2151
6584
6790
 
6585
6791
  ";
6586
6792
 
@@ -6594,7 +6800,7 @@ Doc source:
6594
6800
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L622
6595
6801
 
6596
6802
  Implementation:
6597
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L652-L660
6803
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L863-L871
6598
6804
 
6599
6805
  ";
6600
6806
 
@@ -6607,7 +6813,7 @@ Doc source:
6607
6813
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L625
6608
6814
 
6609
6815
  Implementation:
6610
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L662-L668
6816
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L873-L879
6611
6817
 
6612
6818
  ";
6613
6819
 
@@ -6623,7 +6829,7 @@ Doc source:
6623
6829
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L634
6624
6830
 
6625
6831
  Implementation:
6626
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L684-L687
6832
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L895-L898
6627
6833
 
6628
6834
  ";
6629
6835
 
@@ -6639,7 +6845,7 @@ Doc source:
6639
6845
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L640
6640
6846
 
6641
6847
  Implementation:
6642
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L689-L692
6848
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L900-L903
6643
6849
 
6644
6850
  ";
6645
6851
 
@@ -6655,7 +6861,7 @@ Doc source:
6655
6861
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L646
6656
6862
 
6657
6863
  Implementation:
6658
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1430-L1437
6864
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1644-L1651
6659
6865
 
6660
6866
  ";
6661
6867
 
@@ -6669,7 +6875,7 @@ Doc source:
6669
6875
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L646
6670
6876
 
6671
6877
  Implementation:
6672
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1430-L1437
6878
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1644-L1651
6673
6879
 
6674
6880
  ";
6675
6881
 
@@ -6683,7 +6889,7 @@ Doc source:
6683
6889
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L646
6684
6890
 
6685
6891
  Implementation:
6686
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1430-L1437
6892
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1644-L1651
6687
6893
 
6688
6894
  ";
6689
6895
 
@@ -6711,7 +6917,7 @@ Doc source:
6711
6917
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L655
6712
6918
 
6713
6919
  Implementation:
6714
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1481-L1489
6920
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1695-L1703
6715
6921
 
6716
6922
  ";
6717
6923
 
@@ -6727,7 +6933,7 @@ Doc source:
6727
6933
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L660
6728
6934
 
6729
6935
  Implementation:
6730
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1459-L1465
6936
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1673-L1679
6731
6937
 
6732
6938
  ";
6733
6939
 
@@ -6742,7 +6948,7 @@ Doc source:
6742
6948
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L665
6743
6949
 
6744
6950
  Implementation:
6745
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1467-L1469
6951
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1681-L1683
6746
6952
 
6747
6953
  ";
6748
6954
 
@@ -6757,7 +6963,7 @@ Doc source:
6757
6963
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L670
6758
6964
 
6759
6965
  Implementation:
6760
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1471-L1473
6966
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1685-L1687
6761
6967
 
6762
6968
  ";
6763
6969
 
@@ -6772,7 +6978,7 @@ Doc source:
6772
6978
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L675
6773
6979
 
6774
6980
  Implementation:
6775
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1475-L1479
6981
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1689-L1693
6776
6982
 
6777
6983
  ";
6778
6984
 
@@ -6789,7 +6995,7 @@ Doc source:
6789
6995
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L680
6790
6996
 
6791
6997
  Implementation:
6792
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1564-L1576
6998
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1778-L1790
6793
6999
 
6794
7000
  ";
6795
7001
 
@@ -6803,7 +7009,7 @@ Doc source:
6803
7009
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L680
6804
7010
 
6805
7011
  Implementation:
6806
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1564-L1576
7012
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1778-L1790
6807
7013
 
6808
7014
  ";
6809
7015
 
@@ -6817,7 +7023,7 @@ Doc source:
6817
7023
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L680
6818
7024
 
6819
7025
  Implementation:
6820
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1564-L1576
7026
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1778-L1790
6821
7027
 
6822
7028
  ";
6823
7029
 
@@ -6833,7 +7039,7 @@ Doc source:
6833
7039
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L687
6834
7040
 
6835
7041
  Implementation:
6836
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1579-L1587
7042
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1793-L1801
6837
7043
 
6838
7044
  ";
6839
7045
 
@@ -6849,7 +7055,7 @@ Doc source:
6849
7055
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L693
6850
7056
 
6851
7057
  Implementation:
6852
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1590-L1598
7058
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1804-L1812
6853
7059
 
6854
7060
  ";
6855
7061
 
@@ -6863,7 +7069,7 @@ Doc source:
6863
7069
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L693
6864
7070
 
6865
7071
  Implementation:
6866
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1590-L1598
7072
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1804-L1812
6867
7073
 
6868
7074
  ";
6869
7075
 
@@ -6877,7 +7083,7 @@ Doc source:
6877
7083
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L693
6878
7084
 
6879
7085
  Implementation:
6880
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1590-L1598
7086
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1804-L1812
6881
7087
 
6882
7088
  ";
6883
7089
 
@@ -6893,7 +7099,7 @@ Doc source:
6893
7099
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L699
6894
7100
 
6895
7101
  Implementation:
6896
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1601-L1609
7102
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1815-L1823
6897
7103
 
6898
7104
  ";
6899
7105
 
@@ -6907,7 +7113,7 @@ Doc source:
6907
7113
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L699
6908
7114
 
6909
7115
  Implementation:
6910
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1601-L1609
7116
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1815-L1823
6911
7117
 
6912
7118
  ";
6913
7119
 
@@ -6921,7 +7127,7 @@ Doc source:
6921
7127
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L699
6922
7128
 
6923
7129
  Implementation:
6924
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1601-L1609
7130
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1815-L1823
6925
7131
 
6926
7132
  ";
6927
7133
 
@@ -6937,7 +7143,7 @@ Doc source:
6937
7143
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L705
6938
7144
 
6939
7145
  Implementation:
6940
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1338-L1343
7146
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1552-L1557
6941
7147
 
6942
7148
  ";
6943
7149
 
@@ -6954,7 +7160,7 @@ Doc source:
6954
7160
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L710
6955
7161
 
6956
7162
  Implementation:
6957
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1345-L1356
7163
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1559-L1570
6958
7164
 
6959
7165
  ";
6960
7166
 
@@ -6970,7 +7176,7 @@ Doc source:
6970
7176
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L722
6971
7177
 
6972
7178
  Implementation:
6973
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1611-L1618
7179
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L1825-L1832
6974
7180
 
6975
7181
  ";
6976
7182
 
@@ -7002,7 +7208,7 @@ Doc source:
7002
7208
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L732
7003
7209
 
7004
7210
  Implementation:
7005
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L694-L714
7211
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L905-L925
7006
7212
 
7007
7213
  ";
7008
7214
 
@@ -7023,7 +7229,7 @@ Doc source:
7023
7229
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L738
7024
7230
 
7025
7231
  Implementation:
7026
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2106-L2109
7232
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2320-L2323
7027
7233
 
7028
7234
  ";
7029
7235
 
@@ -7040,7 +7246,7 @@ Doc source:
7040
7246
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L743
7041
7247
 
7042
7248
  Implementation:
7043
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2112-L2117
7249
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2326-L2331
7044
7250
 
7045
7251
  ";
7046
7252
 
@@ -7056,7 +7262,7 @@ Doc source:
7056
7262
  https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L759
7057
7263
 
7058
7264
  Implementation:
7059
- https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2119-L2127
7265
+ https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L2333-L2341
7060
7266
 
7061
7267
  ";
7062
7268
 
@@ -9924,10 +10130,10 @@ casadi::DeserializingStream::DeserializingStream(std::istream &in_s) "
9924
10130
  Constructor.
9925
10131
 
9926
10132
  Doc source:
9927
- https://github.com/casadi/casadi/blob/develop/casadi/core/serializing_stream.hpp#L73
10133
+ https://github.com/casadi/casadi/blob/develop/casadi/core/serializing_stream.hpp#L76
9928
10134
 
9929
10135
  Implementation:
9930
- https://github.com/casadi/casadi/blob/develop/casadi/core/serializing_stream.cpp#L44-L68
10136
+ https://github.com/casadi/casadi/blob/develop/casadi/core/serializing_stream.cpp#L46-L70
9931
10137
 
9932
10138
  ";
9933
10139
 
@@ -9948,10 +10154,10 @@ stream. an error will be raised.
9948
10154
  Extra doc: https://github.com/casadi/casadi/wiki/L_al
9949
10155
 
9950
10156
  Doc source:
9951
- https://github.com/casadi/casadi/blob/develop/casadi/core/serializing_stream.hpp#L83
10157
+ https://github.com/casadi/casadi/blob/develop/casadi/core/serializing_stream.hpp#L86
9952
10158
 
9953
10159
  Implementation:
9954
- https://github.com/casadi/casadi/blob/develop/casadi/core/serializing_stream.cpp#L218-L221
10160
+ https://github.com/casadi/casadi/blob/develop/casadi/core/serializing_stream.cpp#L238-L241
9955
10161
 
9956
10162
  ";
9957
10163
 
@@ -9980,6 +10186,10 @@ https://github.com/casadi/casadi/blob/develop/casadi/core/serializing_stream.cpp
9980
10186
 
9981
10187
  [INTERNAL] ";
9982
10188
 
10189
+ %feature("docstring") casadi::DeserializingStream::unpack(Fmu &e) "
10190
+
10191
+ [INTERNAL] ";
10192
+
9983
10193
  %feature("docstring") casadi::DeserializingStream::unpack(GenericType &e) "
9984
10194
 
9985
10195
  [INTERNAL] ";
@@ -20531,7 +20741,7 @@ Doc source:
20531
20741
  https://github.com/casadi/casadi/blob/develop/casadi/core/generic_matrix.hpp#L233
20532
20742
 
20533
20743
  Implementation:
20534
- https://github.com/casadi/casadi/blob/develop/casadi/core/generic_matrix.hpp#L1565-L1590
20744
+ https://github.com/casadi/casadi/blob/develop/casadi/core/generic_matrix.hpp#L1567-L1592
20535
20745
 
20536
20746
  ";
20537
20747
 
@@ -20590,7 +20800,7 @@ Doc source:
20590
20800
  https://github.com/casadi/casadi/blob/develop/casadi/core/generic_matrix.hpp#L235
20591
20801
 
20592
20802
  Implementation:
20593
- https://github.com/casadi/casadi/blob/develop/casadi/core/generic_matrix.hpp#L1534-L1536
20803
+ https://github.com/casadi/casadi/blob/develop/casadi/core/generic_matrix.hpp#L1536-L1538
20594
20804
 
20595
20805
  ";
20596
20806
 
@@ -20660,7 +20870,7 @@ Doc source:
20660
20870
  https://github.com/casadi/casadi/blob/develop/casadi/core/generic_matrix.hpp#L236
20661
20871
 
20662
20872
  Implementation:
20663
- https://github.com/casadi/casadi/blob/develop/casadi/core/generic_matrix.hpp#L1539-L1541
20873
+ https://github.com/casadi/casadi/blob/develop/casadi/core/generic_matrix.hpp#L1541-L1543
20664
20874
 
20665
20875
  ";
20666
20876
 
@@ -20731,7 +20941,7 @@ Doc source:
20731
20941
  https://github.com/casadi/casadi/blob/develop/casadi/core/generic_matrix.hpp#L237
20732
20942
 
20733
20943
  Implementation:
20734
- https://github.com/casadi/casadi/blob/develop/casadi/core/generic_matrix.hpp#L1544-L1552
20944
+ https://github.com/casadi/casadi/blob/develop/casadi/core/generic_matrix.hpp#L1546-L1554
20735
20945
 
20736
20946
  ";
20737
20947
 
@@ -20826,7 +21036,7 @@ Doc source:
20826
21036
  https://github.com/casadi/casadi/blob/develop/casadi/core/generic_matrix.hpp#L239
20827
21037
 
20828
21038
  Implementation:
20829
- https://github.com/casadi/casadi/blob/develop/casadi/core/generic_matrix.hpp#L1555-L1562
21039
+ https://github.com/casadi/casadi/blob/develop/casadi/core/generic_matrix.hpp#L1557-L1564
20830
21040
 
20831
21041
  ";
20832
21042
 
@@ -30926,7 +31136,7 @@ Doc source:
30926
31136
  https://github.com/casadi/casadi/blob/develop/casadi/core/generic_matrix.hpp#L233
30927
31137
 
30928
31138
  Implementation:
30929
- https://github.com/casadi/casadi/blob/develop/casadi/core/generic_matrix.hpp#L1565-L1590
31139
+ https://github.com/casadi/casadi/blob/develop/casadi/core/generic_matrix.hpp#L1567-L1592
30930
31140
 
30931
31141
  ";
30932
31142
 
@@ -30940,7 +31150,7 @@ Doc source:
30940
31150
  https://github.com/casadi/casadi/blob/develop/casadi/core/generic_matrix.hpp#L235
30941
31151
 
30942
31152
  Implementation:
30943
- https://github.com/casadi/casadi/blob/develop/casadi/core/generic_matrix.hpp#L1534-L1536
31153
+ https://github.com/casadi/casadi/blob/develop/casadi/core/generic_matrix.hpp#L1536-L1538
30944
31154
 
30945
31155
  ";
30946
31156
 
@@ -30954,7 +31164,7 @@ Doc source:
30954
31164
  https://github.com/casadi/casadi/blob/develop/casadi/core/generic_matrix.hpp#L236
30955
31165
 
30956
31166
  Implementation:
30957
- https://github.com/casadi/casadi/blob/develop/casadi/core/generic_matrix.hpp#L1539-L1541
31167
+ https://github.com/casadi/casadi/blob/develop/casadi/core/generic_matrix.hpp#L1541-L1543
30958
31168
 
30959
31169
  ";
30960
31170
 
@@ -30969,7 +31179,7 @@ Doc source:
30969
31179
  https://github.com/casadi/casadi/blob/develop/casadi/core/generic_matrix.hpp#L237
30970
31180
 
30971
31181
  Implementation:
30972
- https://github.com/casadi/casadi/blob/develop/casadi/core/generic_matrix.hpp#L1544-L1552
31182
+ https://github.com/casadi/casadi/blob/develop/casadi/core/generic_matrix.hpp#L1546-L1554
30973
31183
 
30974
31184
  ";
30975
31185
 
@@ -30984,7 +31194,7 @@ Doc source:
30984
31194
  https://github.com/casadi/casadi/blob/develop/casadi/core/generic_matrix.hpp#L239
30985
31195
 
30986
31196
  Implementation:
30987
- https://github.com/casadi/casadi/blob/develop/casadi/core/generic_matrix.hpp#L1555-L1562
31197
+ https://github.com/casadi/casadi/blob/develop/casadi/core/generic_matrix.hpp#L1557-L1564
30988
31198
 
30989
31199
  ";
30990
31200
 
@@ -34815,7 +35025,7 @@ Doc source:
34815
35025
  https://github.com/casadi/casadi/blob/develop/casadi/core/generic_matrix.hpp#L233
34816
35026
 
34817
35027
  Implementation:
34818
- https://github.com/casadi/casadi/blob/develop/casadi/core/generic_matrix.hpp#L1565-L1590
35028
+ https://github.com/casadi/casadi/blob/develop/casadi/core/generic_matrix.hpp#L1567-L1592
34819
35029
 
34820
35030
  ";
34821
35031
 
@@ -34829,7 +35039,7 @@ Doc source:
34829
35039
  https://github.com/casadi/casadi/blob/develop/casadi/core/generic_matrix.hpp#L235
34830
35040
 
34831
35041
  Implementation:
34832
- https://github.com/casadi/casadi/blob/develop/casadi/core/generic_matrix.hpp#L1534-L1536
35042
+ https://github.com/casadi/casadi/blob/develop/casadi/core/generic_matrix.hpp#L1536-L1538
34833
35043
 
34834
35044
  ";
34835
35045
 
@@ -34843,7 +35053,7 @@ Doc source:
34843
35053
  https://github.com/casadi/casadi/blob/develop/casadi/core/generic_matrix.hpp#L236
34844
35054
 
34845
35055
  Implementation:
34846
- https://github.com/casadi/casadi/blob/develop/casadi/core/generic_matrix.hpp#L1539-L1541
35056
+ https://github.com/casadi/casadi/blob/develop/casadi/core/generic_matrix.hpp#L1541-L1543
34847
35057
 
34848
35058
  ";
34849
35059
 
@@ -34857,7 +35067,7 @@ Doc source:
34857
35067
  https://github.com/casadi/casadi/blob/develop/casadi/core/generic_matrix.hpp#L237
34858
35068
 
34859
35069
  Implementation:
34860
- https://github.com/casadi/casadi/blob/develop/casadi/core/generic_matrix.hpp#L1544-L1552
35070
+ https://github.com/casadi/casadi/blob/develop/casadi/core/generic_matrix.hpp#L1546-L1554
34861
35071
 
34862
35072
  ";
34863
35073
 
@@ -34871,7 +35081,7 @@ Doc source:
34871
35081
  https://github.com/casadi/casadi/blob/develop/casadi/core/generic_matrix.hpp#L239
34872
35082
 
34873
35083
  Implementation:
34874
- https://github.com/casadi/casadi/blob/develop/casadi/core/generic_matrix.hpp#L1555-L1562
35084
+ https://github.com/casadi/casadi/blob/develop/casadi/core/generic_matrix.hpp#L1557-L1564
34875
35085
 
34876
35086
  ";
34877
35087
 
@@ -40786,10 +40996,10 @@ casadi::SerializingStream::SerializingStream(std::ostream &out) "
40786
40996
  Constructor.
40787
40997
 
40788
40998
  Doc source:
40789
- https://github.com/casadi/casadi/blob/develop/casadi/core/serializing_stream.hpp#L209
40999
+ https://github.com/casadi/casadi/blob/develop/casadi/core/serializing_stream.hpp#L217
40790
41000
 
40791
41001
  Implementation:
40792
- https://github.com/casadi/casadi/blob/develop/casadi/core/serializing_stream.cpp#L70-L72
41002
+ https://github.com/casadi/casadi/blob/develop/casadi/core/serializing_stream.cpp#L72-L74
40793
41003
 
40794
41004
  ";
40795
41005
 
@@ -40807,10 +41017,10 @@ Serializes an object to the output stream.
40807
41017
  Extra doc: https://github.com/casadi/casadi/wiki/L_ap
40808
41018
 
40809
41019
  Doc source:
40810
- https://github.com/casadi/casadi/blob/develop/casadi/core/serializing_stream.hpp#L216
41020
+ https://github.com/casadi/casadi/blob/develop/casadi/core/serializing_stream.hpp#L224
40811
41021
 
40812
41022
  Implementation:
40813
- https://github.com/casadi/casadi/blob/develop/casadi/core/serializing_stream.cpp#L213-L216
41023
+ https://github.com/casadi/casadi/blob/develop/casadi/core/serializing_stream.cpp#L233-L236
40814
41024
 
40815
41025
  ";
40816
41026
 
@@ -40839,6 +41049,10 @@ https://github.com/casadi/casadi/blob/develop/casadi/core/serializing_stream.cpp
40839
41049
 
40840
41050
  [INTERNAL] ";
40841
41051
 
41052
+ %feature("docstring") casadi::SerializingStream::pack(const Fmu &e) "
41053
+
41054
+ [INTERNAL] ";
41055
+
40842
41056
  %feature("docstring") casadi::SerializingStream::pack(const Slice &e) "
40843
41057
 
40844
41058
  [INTERNAL] ";
@@ -41484,10 +41698,10 @@ horzcat(horzsplit(x, ...)) = x
41484
41698
  Extra doc: https://github.com/casadi/casadi/wiki/L_3e
41485
41699
 
41486
41700
  Doc source:
41487
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L95
41701
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L97
41488
41702
 
41489
41703
  Implementation:
41490
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L95-L97
41704
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L97-L99
41491
41705
 
41492
41706
  ";
41493
41707
 
@@ -41503,10 +41717,10 @@ horzcat(horzsplit(x, ...)) = x
41503
41717
  Extra doc: https://github.com/casadi/casadi/wiki/L_3e
41504
41718
 
41505
41719
  Doc source:
41506
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L95
41720
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L97
41507
41721
 
41508
41722
  Implementation:
41509
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L95-L97
41723
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L97-L99
41510
41724
 
41511
41725
  ";
41512
41726
 
@@ -41522,10 +41736,10 @@ horzcat(horzsplit(x, ...)) = x
41522
41736
  Extra doc: https://github.com/casadi/casadi/wiki/L_3e
41523
41737
 
41524
41738
  Doc source:
41525
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L95
41739
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L97
41526
41740
 
41527
41741
  Implementation:
41528
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L95-L97
41742
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L97-L99
41529
41743
 
41530
41744
  ";
41531
41745
 
@@ -41538,10 +41752,10 @@ Concatenate horizontally, two matrices.
41538
41752
  Extra doc: https://github.com/casadi/casadi/wiki/L_4a
41539
41753
 
41540
41754
  Doc source:
41541
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L435
41755
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L472
41542
41756
 
41543
41757
  Implementation:
41544
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L435-L437
41758
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L472-L474
41545
41759
 
41546
41760
  ";
41547
41761
 
@@ -41552,10 +41766,10 @@ Concatenate horizontally, two matrices.
41552
41766
  Extra doc: https://github.com/casadi/casadi/wiki/L_4a
41553
41767
 
41554
41768
  Doc source:
41555
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L435
41769
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L472
41556
41770
 
41557
41771
  Implementation:
41558
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L435-L437
41772
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L472-L474
41559
41773
 
41560
41774
  ";
41561
41775
 
@@ -41566,10 +41780,10 @@ Concatenate horizontally, two matrices.
41566
41780
  Extra doc: https://github.com/casadi/casadi/wiki/L_4a
41567
41781
 
41568
41782
  Doc source:
41569
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L435
41783
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L472
41570
41784
 
41571
41785
  Implementation:
41572
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L435-L437
41786
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L472-L474
41573
41787
 
41574
41788
  ";
41575
41789
 
@@ -41582,10 +41796,10 @@ Concatenate horizontally, three matrices.
41582
41796
  Extra doc: https://github.com/casadi/casadi/wiki/L_4b
41583
41797
 
41584
41798
  Doc source:
41585
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L442
41799
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L479
41586
41800
 
41587
41801
  Implementation:
41588
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L442-L444
41802
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L479-L481
41589
41803
 
41590
41804
  ";
41591
41805
 
@@ -41596,10 +41810,10 @@ Concatenate horizontally, three matrices.
41596
41810
  Extra doc: https://github.com/casadi/casadi/wiki/L_4b
41597
41811
 
41598
41812
  Doc source:
41599
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L442
41813
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L479
41600
41814
 
41601
41815
  Implementation:
41602
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L442-L444
41816
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L479-L481
41603
41817
 
41604
41818
  ";
41605
41819
 
@@ -41610,10 +41824,10 @@ Concatenate horizontally, three matrices.
41610
41824
  Extra doc: https://github.com/casadi/casadi/wiki/L_4b
41611
41825
 
41612
41826
  Doc source:
41613
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L442
41827
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L479
41614
41828
 
41615
41829
  Implementation:
41616
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L442-L444
41830
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L479-L481
41617
41831
 
41618
41832
  ";
41619
41833
 
@@ -41626,10 +41840,10 @@ Concatenate horizontally, four matrices.
41626
41840
  Extra doc: https://github.com/casadi/casadi/wiki/L_4c
41627
41841
 
41628
41842
  Doc source:
41629
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L449
41843
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L486
41630
41844
 
41631
41845
  Implementation:
41632
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L449-L452
41846
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L486-L489
41633
41847
 
41634
41848
  ";
41635
41849
 
@@ -41640,10 +41854,10 @@ Concatenate horizontally, four matrices.
41640
41854
  Extra doc: https://github.com/casadi/casadi/wiki/L_4c
41641
41855
 
41642
41856
  Doc source:
41643
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L449
41857
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L486
41644
41858
 
41645
41859
  Implementation:
41646
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L449-L452
41860
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L486-L489
41647
41861
 
41648
41862
  ";
41649
41863
 
@@ -41654,10 +41868,10 @@ Concatenate horizontally, four matrices.
41654
41868
  Extra doc: https://github.com/casadi/casadi/wiki/L_4c
41655
41869
 
41656
41870
  Doc source:
41657
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L449
41871
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L486
41658
41872
 
41659
41873
  Implementation:
41660
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L449-L452
41874
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L486-L489
41661
41875
 
41662
41876
  ";
41663
41877
 
@@ -41671,10 +41885,10 @@ Concatenate horizontally, five matrices.
41671
41885
  Extra doc: https://github.com/casadi/casadi/wiki/L_4d
41672
41886
 
41673
41887
  Doc source:
41674
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L457
41888
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L494
41675
41889
 
41676
41890
  Implementation:
41677
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L457-L460
41891
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L494-L497
41678
41892
 
41679
41893
  ";
41680
41894
 
@@ -41685,10 +41899,10 @@ Concatenate horizontally, five matrices.
41685
41899
  Extra doc: https://github.com/casadi/casadi/wiki/L_4d
41686
41900
 
41687
41901
  Doc source:
41688
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L457
41902
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L494
41689
41903
 
41690
41904
  Implementation:
41691
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L457-L460
41905
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L494-L497
41692
41906
 
41693
41907
  ";
41694
41908
 
@@ -41699,10 +41913,10 @@ Concatenate horizontally, five matrices.
41699
41913
  Extra doc: https://github.com/casadi/casadi/wiki/L_4d
41700
41914
 
41701
41915
  Doc source:
41702
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L457
41916
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L494
41703
41917
 
41704
41918
  Implementation:
41705
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L457-L460
41919
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L494-L497
41706
41920
 
41707
41921
  ";
41708
41922
 
@@ -41716,10 +41930,10 @@ Concatenate horizontally, six matrices.
41716
41930
  Extra doc: https://github.com/casadi/casadi/wiki/L_4e
41717
41931
 
41718
41932
  Doc source:
41719
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L465
41933
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L502
41720
41934
 
41721
41935
  Implementation:
41722
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L465-L468
41936
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L502-L505
41723
41937
 
41724
41938
  ";
41725
41939
 
@@ -41730,10 +41944,10 @@ Concatenate horizontally, six matrices.
41730
41944
  Extra doc: https://github.com/casadi/casadi/wiki/L_4e
41731
41945
 
41732
41946
  Doc source:
41733
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L465
41947
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L502
41734
41948
 
41735
41949
  Implementation:
41736
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L465-L468
41950
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L502-L505
41737
41951
 
41738
41952
  ";
41739
41953
 
@@ -41744,10 +41958,10 @@ Concatenate horizontally, six matrices.
41744
41958
  Extra doc: https://github.com/casadi/casadi/wiki/L_4e
41745
41959
 
41746
41960
  Doc source:
41747
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L465
41961
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L502
41748
41962
 
41749
41963
  Implementation:
41750
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L465-L468
41964
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L502-L505
41751
41965
 
41752
41966
  ";
41753
41967
 
@@ -41765,10 +41979,10 @@ vertcat(vertsplit(x, ...)) = x
41765
41979
  Extra doc: https://github.com/casadi/casadi/wiki/L_3f
41766
41980
 
41767
41981
  Doc source:
41768
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L106
41982
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L108
41769
41983
 
41770
41984
  Implementation:
41771
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L106-L108
41985
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L108-L110
41772
41986
 
41773
41987
  ";
41774
41988
 
@@ -41784,10 +41998,10 @@ vertcat(vertsplit(x, ...)) = x
41784
41998
  Extra doc: https://github.com/casadi/casadi/wiki/L_3f
41785
41999
 
41786
42000
  Doc source:
41787
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L106
42001
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L108
41788
42002
 
41789
42003
  Implementation:
41790
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L106-L108
42004
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L108-L110
41791
42005
 
41792
42006
  ";
41793
42007
 
@@ -41803,10 +42017,10 @@ vertcat(vertsplit(x, ...)) = x
41803
42017
  Extra doc: https://github.com/casadi/casadi/wiki/L_3f
41804
42018
 
41805
42019
  Doc source:
41806
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L106
42020
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L108
41807
42021
 
41808
42022
  Implementation:
41809
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L106-L108
42023
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L108-L110
41810
42024
 
41811
42025
  ";
41812
42026
 
@@ -41819,10 +42033,10 @@ Concatenate vertically, two matrices.
41819
42033
  Extra doc: https://github.com/casadi/casadi/wiki/L_4f
41820
42034
 
41821
42035
  Doc source:
41822
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L473
42036
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L510
41823
42037
 
41824
42038
  Implementation:
41825
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L473-L475
42039
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L510-L512
41826
42040
 
41827
42041
  ";
41828
42042
 
@@ -41833,10 +42047,10 @@ Concatenate vertically, two matrices.
41833
42047
  Extra doc: https://github.com/casadi/casadi/wiki/L_4f
41834
42048
 
41835
42049
  Doc source:
41836
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L473
42050
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L510
41837
42051
 
41838
42052
  Implementation:
41839
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L473-L475
42053
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L510-L512
41840
42054
 
41841
42055
  ";
41842
42056
 
@@ -41847,10 +42061,10 @@ Concatenate vertically, two matrices.
41847
42061
  Extra doc: https://github.com/casadi/casadi/wiki/L_4f
41848
42062
 
41849
42063
  Doc source:
41850
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L473
42064
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L510
41851
42065
 
41852
42066
  Implementation:
41853
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L473-L475
42067
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L510-L512
41854
42068
 
41855
42069
  ";
41856
42070
 
@@ -41863,10 +42077,10 @@ Concatenate vertically, three matrices.
41863
42077
  Extra doc: https://github.com/casadi/casadi/wiki/L_4g
41864
42078
 
41865
42079
  Doc source:
41866
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L480
42080
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L517
41867
42081
 
41868
42082
  Implementation:
41869
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L480-L482
42083
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L517-L519
41870
42084
 
41871
42085
  ";
41872
42086
 
@@ -41877,10 +42091,10 @@ Concatenate vertically, three matrices.
41877
42091
  Extra doc: https://github.com/casadi/casadi/wiki/L_4g
41878
42092
 
41879
42093
  Doc source:
41880
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L480
42094
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L517
41881
42095
 
41882
42096
  Implementation:
41883
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L480-L482
42097
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L517-L519
41884
42098
 
41885
42099
  ";
41886
42100
 
@@ -41891,10 +42105,10 @@ Concatenate vertically, three matrices.
41891
42105
  Extra doc: https://github.com/casadi/casadi/wiki/L_4g
41892
42106
 
41893
42107
  Doc source:
41894
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L480
42108
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L517
41895
42109
 
41896
42110
  Implementation:
41897
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L480-L482
42111
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L517-L519
41898
42112
 
41899
42113
  ";
41900
42114
 
@@ -41907,10 +42121,10 @@ Concatenate vertically, four matrices.
41907
42121
  Extra doc: https://github.com/casadi/casadi/wiki/L_4h
41908
42122
 
41909
42123
  Doc source:
41910
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L487
42124
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L524
41911
42125
 
41912
42126
  Implementation:
41913
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L487-L490
42127
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L524-L527
41914
42128
 
41915
42129
  ";
41916
42130
 
@@ -41921,10 +42135,10 @@ Concatenate vertically, four matrices.
41921
42135
  Extra doc: https://github.com/casadi/casadi/wiki/L_4h
41922
42136
 
41923
42137
  Doc source:
41924
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L487
42138
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L524
41925
42139
 
41926
42140
  Implementation:
41927
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L487-L490
42141
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L524-L527
41928
42142
 
41929
42143
  ";
41930
42144
 
@@ -41935,10 +42149,10 @@ Concatenate vertically, four matrices.
41935
42149
  Extra doc: https://github.com/casadi/casadi/wiki/L_4h
41936
42150
 
41937
42151
  Doc source:
41938
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L487
42152
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L524
41939
42153
 
41940
42154
  Implementation:
41941
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L487-L490
42155
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L524-L527
41942
42156
 
41943
42157
  ";
41944
42158
 
@@ -41952,10 +42166,10 @@ Concatenate vertically, five matrices.
41952
42166
  Extra doc: https://github.com/casadi/casadi/wiki/L_4i
41953
42167
 
41954
42168
  Doc source:
41955
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L495
42169
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L532
41956
42170
 
41957
42171
  Implementation:
41958
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L495-L498
42172
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L532-L535
41959
42173
 
41960
42174
  ";
41961
42175
 
@@ -41966,10 +42180,10 @@ Concatenate vertically, five matrices.
41966
42180
  Extra doc: https://github.com/casadi/casadi/wiki/L_4i
41967
42181
 
41968
42182
  Doc source:
41969
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L495
42183
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L532
41970
42184
 
41971
42185
  Implementation:
41972
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L495-L498
42186
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L532-L535
41973
42187
 
41974
42188
  ";
41975
42189
 
@@ -41980,10 +42194,10 @@ Concatenate vertically, five matrices.
41980
42194
  Extra doc: https://github.com/casadi/casadi/wiki/L_4i
41981
42195
 
41982
42196
  Doc source:
41983
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L495
42197
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L532
41984
42198
 
41985
42199
  Implementation:
41986
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L495-L498
42200
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L532-L535
41987
42201
 
41988
42202
  ";
41989
42203
 
@@ -41997,10 +42211,10 @@ Concatenate vertically, six matrices.
41997
42211
  Extra doc: https://github.com/casadi/casadi/wiki/L_4j
41998
42212
 
41999
42213
  Doc source:
42000
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L503
42214
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L540
42001
42215
 
42002
42216
  Implementation:
42003
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L503-L506
42217
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L540-L543
42004
42218
 
42005
42219
  ";
42006
42220
 
@@ -42011,10 +42225,10 @@ Concatenate vertically, six matrices.
42011
42225
  Extra doc: https://github.com/casadi/casadi/wiki/L_4j
42012
42226
 
42013
42227
  Doc source:
42014
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L503
42228
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L540
42015
42229
 
42016
42230
  Implementation:
42017
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L503-L506
42231
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L540-L543
42018
42232
 
42019
42233
  ";
42020
42234
 
@@ -42025,10 +42239,10 @@ Concatenate vertically, six matrices.
42025
42239
  Extra doc: https://github.com/casadi/casadi/wiki/L_4j
42026
42240
 
42027
42241
  Doc source:
42028
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L503
42242
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L540
42029
42243
 
42030
42244
  Implementation:
42031
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L503-L506
42245
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L540-L543
42032
42246
 
42033
42247
  ";
42034
42248
 
@@ -42051,10 +42265,10 @@ horzcat(horzsplit(x, ...)) = x
42051
42265
  Extra doc: https://github.com/casadi/casadi/wiki/L_3g
42052
42266
 
42053
42267
  Doc source:
42054
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L119
42268
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L121
42055
42269
 
42056
42270
  Implementation:
42057
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L119-L121
42271
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L121-L123
42058
42272
 
42059
42273
  ";
42060
42274
 
@@ -42075,10 +42289,10 @@ horzcat(horzsplit(x, ...)) = x
42075
42289
  Extra doc: https://github.com/casadi/casadi/wiki/L_3g
42076
42290
 
42077
42291
  Doc source:
42078
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L119
42292
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L121
42079
42293
 
42080
42294
  Implementation:
42081
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L119-L121
42295
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L121-L123
42082
42296
 
42083
42297
  ";
42084
42298
 
@@ -42099,10 +42313,10 @@ horzcat(horzsplit(x, ...)) = x
42099
42313
  Extra doc: https://github.com/casadi/casadi/wiki/L_3g
42100
42314
 
42101
42315
  Doc source:
42102
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L119
42316
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L121
42103
42317
 
42104
42318
  Implementation:
42105
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L119-L121
42319
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L121-L123
42106
42320
 
42107
42321
  ";
42108
42322
 
@@ -42116,17 +42330,19 @@ Parameters:
42116
42330
  -----------
42117
42331
 
42118
42332
  incr:
42119
- Size of each group of columns
42333
+ Size (width) of each group of columns
42120
42334
 
42121
42335
  horzcat(horzsplit(x, ...)) = x
42122
42336
 
42337
+ \\\\seealso horzsplit_n
42338
+
42123
42339
  Extra doc: https://github.com/casadi/casadi/wiki/L_3h
42124
42340
 
42125
42341
  Doc source:
42126
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L130
42342
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L134
42127
42343
 
42128
42344
  Implementation:
42129
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L130-L132
42345
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L134-L136
42130
42346
 
42131
42347
  ";
42132
42348
 
@@ -42138,17 +42354,19 @@ Parameters:
42138
42354
  -----------
42139
42355
 
42140
42356
  incr:
42141
- Size of each group of columns
42357
+ Size (width) of each group of columns
42142
42358
 
42143
42359
  horzcat(horzsplit(x, ...)) = x
42144
42360
 
42361
+ \\\\seealso horzsplit_n
42362
+
42145
42363
  Extra doc: https://github.com/casadi/casadi/wiki/L_3h
42146
42364
 
42147
42365
  Doc source:
42148
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L130
42366
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L134
42149
42367
 
42150
42368
  Implementation:
42151
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L130-L132
42369
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L134-L136
42152
42370
 
42153
42371
  ";
42154
42372
 
@@ -42160,17 +42378,99 @@ Parameters:
42160
42378
  -----------
42161
42379
 
42162
42380
  incr:
42163
- Size of each group of columns
42381
+ Size (width) of each group of columns
42164
42382
 
42165
42383
  horzcat(horzsplit(x, ...)) = x
42166
42384
 
42385
+ \\\\seealso horzsplit_n
42386
+
42167
42387
  Extra doc: https://github.com/casadi/casadi/wiki/L_3h
42168
42388
 
42169
42389
  Doc source:
42170
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L130
42390
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L134
42391
+
42392
+ Implementation:
42393
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L134-L136
42394
+
42395
+ ";
42396
+
42397
+ %feature("docstring") casadi::SparsityInterfaceCommon::horzsplit_n(const
42398
+ MatType &x, casadi_int n) "
42399
+
42400
+ [INTERNAL]
42401
+ split horizontally, retaining fixed-sized groups of columns
42402
+
42403
+ Parameters:
42404
+ -----------
42405
+
42406
+ n:
42407
+ Number of groups of columns
42408
+
42409
+ Will error when the number of columns is not a multiple of n
42410
+
42411
+ horzcat(horzsplit(x, ...)) = x
42412
+
42413
+ \\\\seealso horzsplit
42414
+
42415
+ Extra doc: https://github.com/casadi/casadi/wiki/L_277
42416
+
42417
+ Doc source:
42418
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L149
42419
+
42420
+ Implementation:
42421
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L149-L151
42422
+
42423
+ ";
42424
+
42425
+ %feature("docstring") casadi::casadi_horzsplit_n "
42426
+
42427
+ split horizontally, retaining fixed-sized groups of columns
42428
+
42429
+ Parameters:
42430
+ -----------
42431
+
42432
+ n:
42433
+ Number of groups of columns
42434
+
42435
+ Will error when the number of columns is not a multiple of n
42436
+
42437
+ horzcat(horzsplit(x, ...)) = x
42438
+
42439
+ \\\\seealso horzsplit
42440
+
42441
+ Extra doc: https://github.com/casadi/casadi/wiki/L_277
42442
+
42443
+ Doc source:
42444
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L149
42171
42445
 
42172
42446
  Implementation:
42173
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L130-L132
42447
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L149-L151
42448
+
42449
+ ";
42450
+
42451
+ %feature("docstring") casadi::SparsityInterfaceCommon::casadi_horzsplit_n "
42452
+
42453
+ split horizontally, retaining fixed-sized groups of columns
42454
+
42455
+ Parameters:
42456
+ -----------
42457
+
42458
+ n:
42459
+ Number of groups of columns
42460
+
42461
+ Will error when the number of columns is not a multiple of n
42462
+
42463
+ horzcat(horzsplit(x, ...)) = x
42464
+
42465
+ \\\\seealso horzsplit
42466
+
42467
+ Extra doc: https://github.com/casadi/casadi/wiki/L_277
42468
+
42469
+ Doc source:
42470
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L149
42471
+
42472
+ Implementation:
42473
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L149-L151
42174
42474
 
42175
42475
  ";
42176
42476
 
@@ -42193,10 +42493,10 @@ vertcat(vertsplit(x, ...)) = x
42193
42493
  Extra doc: https://github.com/casadi/casadi/wiki/L_3i
42194
42494
 
42195
42495
  Doc source:
42196
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L143
42496
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L162
42197
42497
 
42198
42498
  Implementation:
42199
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L143-L145
42499
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L162-L164
42200
42500
 
42201
42501
  ";
42202
42502
 
@@ -42217,10 +42517,10 @@ vertcat(vertsplit(x, ...)) = x
42217
42517
  Extra doc: https://github.com/casadi/casadi/wiki/L_3i
42218
42518
 
42219
42519
  Doc source:
42220
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L143
42520
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L162
42221
42521
 
42222
42522
  Implementation:
42223
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L143-L145
42523
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L162-L164
42224
42524
 
42225
42525
  ";
42226
42526
 
@@ -42241,10 +42541,10 @@ vertcat(vertsplit(x, ...)) = x
42241
42541
  Extra doc: https://github.com/casadi/casadi/wiki/L_3i
42242
42542
 
42243
42543
  Doc source:
42244
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L143
42544
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L162
42245
42545
 
42246
42546
  Implementation:
42247
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L143-L145
42547
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L162-L164
42248
42548
 
42249
42549
  ";
42250
42550
 
@@ -42295,13 +42595,15 @@ will have a size smaller than incr.
42295
42595
 
42296
42596
 
42297
42597
 
42598
+ \\\\seealso vertsplit_n
42599
+
42298
42600
  Extra doc: https://github.com/casadi/casadi/wiki/L_3k
42299
42601
 
42300
42602
  Doc source:
42301
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L182
42603
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L204
42302
42604
 
42303
42605
  Implementation:
42304
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L182-L184
42606
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L204-L206
42305
42607
 
42306
42608
  ";
42307
42609
 
@@ -42350,13 +42652,15 @@ will have a size smaller than incr.
42350
42652
 
42351
42653
 
42352
42654
 
42655
+ \\\\seealso vertsplit_n
42656
+
42353
42657
  Extra doc: https://github.com/casadi/casadi/wiki/L_3k
42354
42658
 
42355
42659
  Doc source:
42356
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L182
42660
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L204
42357
42661
 
42358
42662
  Implementation:
42359
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L182-L184
42663
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L204-L206
42360
42664
 
42361
42665
  ";
42362
42666
 
@@ -42405,13 +42709,15 @@ will have a size smaller than incr.
42405
42709
 
42406
42710
 
42407
42711
 
42712
+ \\\\seealso vertsplit_n
42713
+
42408
42714
  Extra doc: https://github.com/casadi/casadi/wiki/L_3k
42409
42715
 
42410
42716
  Doc source:
42411
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L182
42717
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L204
42412
42718
 
42413
42719
  Implementation:
42414
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L182-L184
42720
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L204-L206
42415
42721
 
42416
42722
  ";
42417
42723
 
@@ -42425,10 +42731,10 @@ matrices.
42425
42731
  Extra doc: https://github.com/casadi/casadi/wiki/L_3j
42426
42732
 
42427
42733
  Doc source:
42428
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L150
42734
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L169
42429
42735
 
42430
42736
  Implementation:
42431
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L150-L152
42737
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L169-L171
42432
42738
 
42433
42739
  ";
42434
42740
 
@@ -42439,10 +42745,10 @@ Helper function, get offsets corresponding to a vector of matrices.
42439
42745
  Extra doc: https://github.com/casadi/casadi/wiki/L_3j
42440
42746
 
42441
42747
  Doc source:
42442
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L150
42748
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L169
42443
42749
 
42444
42750
  Implementation:
42445
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L150-L152
42751
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L169-L171
42446
42752
 
42447
42753
  ";
42448
42754
 
@@ -42453,10 +42759,90 @@ Helper function, get offsets corresponding to a vector of matrices.
42453
42759
  Extra doc: https://github.com/casadi/casadi/wiki/L_3j
42454
42760
 
42455
42761
  Doc source:
42456
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L150
42762
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L169
42763
+
42764
+ Implementation:
42765
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L169-L171
42766
+
42767
+ ";
42768
+
42769
+ %feature("docstring") casadi::SparsityInterfaceCommon::vertsplit_n(const
42770
+ MatType &x, casadi_int n) "
42771
+
42772
+ [INTERNAL]
42773
+ split vertically, retaining fixed-sized groups of rows
42774
+
42775
+ Parameters:
42776
+ -----------
42777
+
42778
+ n:
42779
+ Number of groups of rows
42780
+
42781
+ Will error when the number of rows is not a multiple of n
42782
+
42783
+ vertcat(vertsplit(x, ...)) = x
42784
+
42785
+ \\\\seealso vertsplit
42786
+
42787
+ Extra doc: https://github.com/casadi/casadi/wiki/L_278
42788
+
42789
+ Doc source:
42790
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L219
42791
+
42792
+ Implementation:
42793
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L219-L221
42794
+
42795
+ ";
42796
+
42797
+ %feature("docstring") casadi::casadi_vertsplit_n "
42798
+
42799
+ split vertically, retaining fixed-sized groups of rows
42800
+
42801
+ Parameters:
42802
+ -----------
42803
+
42804
+ n:
42805
+ Number of groups of rows
42806
+
42807
+ Will error when the number of rows is not a multiple of n
42808
+
42809
+ vertcat(vertsplit(x, ...)) = x
42810
+
42811
+ \\\\seealso vertsplit
42812
+
42813
+ Extra doc: https://github.com/casadi/casadi/wiki/L_278
42814
+
42815
+ Doc source:
42816
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L219
42817
+
42818
+ Implementation:
42819
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L219-L221
42820
+
42821
+ ";
42822
+
42823
+ %feature("docstring") casadi::SparsityInterfaceCommon::casadi_vertsplit_n "
42824
+
42825
+ split vertically, retaining fixed-sized groups of rows
42826
+
42827
+ Parameters:
42828
+ -----------
42829
+
42830
+ n:
42831
+ Number of groups of rows
42832
+
42833
+ Will error when the number of rows is not a multiple of n
42834
+
42835
+ vertcat(vertsplit(x, ...)) = x
42836
+
42837
+ \\\\seealso vertsplit
42838
+
42839
+ Extra doc: https://github.com/casadi/casadi/wiki/L_278
42840
+
42841
+ Doc source:
42842
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L219
42457
42843
 
42458
42844
  Implementation:
42459
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L150-L152
42845
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L219-L221
42460
42846
 
42461
42847
  ";
42462
42848
 
@@ -42469,10 +42855,10 @@ Construct a matrix from a list of list of blocks.
42469
42855
  Extra doc: https://github.com/casadi/casadi/wiki/L_3l
42470
42856
 
42471
42857
  Doc source:
42472
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L189
42858
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L226
42473
42859
 
42474
42860
  Implementation:
42475
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L189-L191
42861
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L226-L228
42476
42862
 
42477
42863
  ";
42478
42864
 
@@ -42483,10 +42869,10 @@ Construct a matrix from a list of list of blocks.
42483
42869
  Extra doc: https://github.com/casadi/casadi/wiki/L_3l
42484
42870
 
42485
42871
  Doc source:
42486
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L189
42872
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L226
42487
42873
 
42488
42874
  Implementation:
42489
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L189-L191
42875
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L226-L228
42490
42876
 
42491
42877
  ";
42492
42878
 
@@ -42497,10 +42883,10 @@ Construct a matrix from a list of list of blocks.
42497
42883
  Extra doc: https://github.com/casadi/casadi/wiki/L_3l
42498
42884
 
42499
42885
  Doc source:
42500
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L189
42886
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L226
42501
42887
 
42502
42888
  Implementation:
42503
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L189-L191
42889
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L226-L228
42504
42890
 
42505
42891
  ";
42506
42892
 
@@ -42513,10 +42899,10 @@ Construct a matrix from 4 blocks.
42513
42899
  Extra doc: https://github.com/casadi/casadi/wiki/L_3m
42514
42900
 
42515
42901
  Doc source:
42516
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L197
42902
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L234
42517
42903
 
42518
42904
  Implementation:
42519
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L197-L199
42905
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L234-L236
42520
42906
 
42521
42907
  ";
42522
42908
 
@@ -42527,10 +42913,10 @@ Construct a matrix from 4 blocks.
42527
42913
  Extra doc: https://github.com/casadi/casadi/wiki/L_3m
42528
42914
 
42529
42915
  Doc source:
42530
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L197
42916
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L234
42531
42917
 
42532
42918
  Implementation:
42533
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L197-L199
42919
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L234-L236
42534
42920
 
42535
42921
  ";
42536
42922
 
@@ -42541,10 +42927,10 @@ Construct a matrix from 4 blocks.
42541
42927
  Extra doc: https://github.com/casadi/casadi/wiki/L_3m
42542
42928
 
42543
42929
  Doc source:
42544
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L197
42930
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L234
42545
42931
 
42546
42932
  Implementation:
42547
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L197-L199
42933
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L234-L236
42548
42934
 
42549
42935
  ";
42550
42936
 
@@ -42569,10 +42955,10 @@ blockcat(blocksplit(x,..., ...)) = x
42569
42955
  Extra doc: https://github.com/casadi/casadi/wiki/L_3n
42570
42956
 
42571
42957
  Doc source:
42572
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L210
42958
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L247
42573
42959
 
42574
42960
  Implementation:
42575
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L210-L214
42961
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L247-L251
42576
42962
 
42577
42963
  ";
42578
42964
 
@@ -42594,10 +42980,10 @@ blockcat(blocksplit(x,..., ...)) = x
42594
42980
  Extra doc: https://github.com/casadi/casadi/wiki/L_3n
42595
42981
 
42596
42982
  Doc source:
42597
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L210
42983
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L247
42598
42984
 
42599
42985
  Implementation:
42600
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L210-L214
42986
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L247-L251
42601
42987
 
42602
42988
  ";
42603
42989
 
@@ -42619,10 +43005,10 @@ blockcat(blocksplit(x,..., ...)) = x
42619
43005
  Extra doc: https://github.com/casadi/casadi/wiki/L_3n
42620
43006
 
42621
43007
  Doc source:
42622
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L210
43008
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L247
42623
43009
 
42624
43010
  Implementation:
42625
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L210-L214
43011
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L247-L251
42626
43012
 
42627
43013
  ";
42628
43014
 
@@ -42646,10 +43032,10 @@ blockcat(blocksplit(x,..., ...)) = x
42646
43032
  Extra doc: https://github.com/casadi/casadi/wiki/L_3o
42647
43033
 
42648
43034
  Doc source:
42649
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L225
43035
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L262
42650
43036
 
42651
43037
  Implementation:
42652
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L225-L227
43038
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L262-L264
42653
43039
 
42654
43040
  ";
42655
43041
 
@@ -42671,10 +43057,10 @@ blockcat(blocksplit(x,..., ...)) = x
42671
43057
  Extra doc: https://github.com/casadi/casadi/wiki/L_3o
42672
43058
 
42673
43059
  Doc source:
42674
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L225
43060
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L262
42675
43061
 
42676
43062
  Implementation:
42677
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L225-L227
43063
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L262-L264
42678
43064
 
42679
43065
  ";
42680
43066
 
@@ -42696,10 +43082,10 @@ blockcat(blocksplit(x,..., ...)) = x
42696
43082
  Extra doc: https://github.com/casadi/casadi/wiki/L_3o
42697
43083
 
42698
43084
  Doc source:
42699
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L225
43085
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L262
42700
43086
 
42701
43087
  Implementation:
42702
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L225-L227
43088
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L262-L264
42703
43089
 
42704
43090
  ";
42705
43091
 
@@ -42712,10 +43098,10 @@ Construct a matrix with given block on the diagonal.
42712
43098
  Extra doc: https://github.com/casadi/casadi/wiki/L_3p
42713
43099
 
42714
43100
  Doc source:
42715
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L232
43101
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L269
42716
43102
 
42717
43103
  Implementation:
42718
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L232-L234
43104
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L269-L271
42719
43105
 
42720
43106
  ";
42721
43107
 
@@ -42726,10 +43112,10 @@ Construct a matrix with given block on the diagonal.
42726
43112
  Extra doc: https://github.com/casadi/casadi/wiki/L_3p
42727
43113
 
42728
43114
  Doc source:
42729
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L232
43115
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L269
42730
43116
 
42731
43117
  Implementation:
42732
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L232-L234
43118
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L269-L271
42733
43119
 
42734
43120
  ";
42735
43121
 
@@ -42740,10 +43126,10 @@ Construct a matrix with given block on the diagonal.
42740
43126
  Extra doc: https://github.com/casadi/casadi/wiki/L_3p
42741
43127
 
42742
43128
  Doc source:
42743
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L232
43129
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L269
42744
43130
 
42745
43131
  Implementation:
42746
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L232-L234
43132
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L269-L271
42747
43133
 
42748
43134
  ";
42749
43135
 
@@ -42756,10 +43142,10 @@ Concatenate along diagonal, two matrices.
42756
43142
  Extra doc: https://github.com/casadi/casadi/wiki/L_4k
42757
43143
 
42758
43144
  Doc source:
42759
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L511
43145
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L548
42760
43146
 
42761
43147
  Implementation:
42762
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L511-L513
43148
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L548-L550
42763
43149
 
42764
43150
  ";
42765
43151
 
@@ -42770,10 +43156,10 @@ Concatenate along diagonal, two matrices.
42770
43156
  Extra doc: https://github.com/casadi/casadi/wiki/L_4k
42771
43157
 
42772
43158
  Doc source:
42773
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L511
43159
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L548
42774
43160
 
42775
43161
  Implementation:
42776
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L511-L513
43162
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L548-L550
42777
43163
 
42778
43164
  ";
42779
43165
 
@@ -42784,10 +43170,10 @@ Concatenate along diagonal, two matrices.
42784
43170
  Extra doc: https://github.com/casadi/casadi/wiki/L_4k
42785
43171
 
42786
43172
  Doc source:
42787
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L511
43173
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L548
42788
43174
 
42789
43175
  Implementation:
42790
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L511-L513
43176
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L548-L550
42791
43177
 
42792
43178
  ";
42793
43179
 
@@ -42800,10 +43186,10 @@ Concatenate along diagonal, three matrices.
42800
43186
  Extra doc: https://github.com/casadi/casadi/wiki/L_4l
42801
43187
 
42802
43188
  Doc source:
42803
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L518
43189
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L555
42804
43190
 
42805
43191
  Implementation:
42806
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L518-L520
43192
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L555-L557
42807
43193
 
42808
43194
  ";
42809
43195
 
@@ -42814,10 +43200,10 @@ Concatenate along diagonal, three matrices.
42814
43200
  Extra doc: https://github.com/casadi/casadi/wiki/L_4l
42815
43201
 
42816
43202
  Doc source:
42817
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L518
43203
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L555
42818
43204
 
42819
43205
  Implementation:
42820
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L518-L520
43206
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L555-L557
42821
43207
 
42822
43208
  ";
42823
43209
 
@@ -42828,10 +43214,10 @@ Concatenate along diagonal, three matrices.
42828
43214
  Extra doc: https://github.com/casadi/casadi/wiki/L_4l
42829
43215
 
42830
43216
  Doc source:
42831
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L518
43217
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L555
42832
43218
 
42833
43219
  Implementation:
42834
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L518-L520
43220
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L555-L557
42835
43221
 
42836
43222
  ";
42837
43223
 
@@ -42844,10 +43230,10 @@ Concatenate along diagonal, four matrices.
42844
43230
  Extra doc: https://github.com/casadi/casadi/wiki/L_4m
42845
43231
 
42846
43232
  Doc source:
42847
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L525
43233
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L562
42848
43234
 
42849
43235
  Implementation:
42850
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L525-L528
43236
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L562-L565
42851
43237
 
42852
43238
  ";
42853
43239
 
@@ -42858,10 +43244,10 @@ Concatenate along diagonal, four matrices.
42858
43244
  Extra doc: https://github.com/casadi/casadi/wiki/L_4m
42859
43245
 
42860
43246
  Doc source:
42861
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L525
43247
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L562
42862
43248
 
42863
43249
  Implementation:
42864
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L525-L528
43250
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L562-L565
42865
43251
 
42866
43252
  ";
42867
43253
 
@@ -42872,10 +43258,10 @@ Concatenate along diagonal, four matrices.
42872
43258
  Extra doc: https://github.com/casadi/casadi/wiki/L_4m
42873
43259
 
42874
43260
  Doc source:
42875
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L525
43261
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L562
42876
43262
 
42877
43263
  Implementation:
42878
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L525-L528
43264
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L562-L565
42879
43265
 
42880
43266
  ";
42881
43267
 
@@ -42889,10 +43275,10 @@ Concatenate along diagonal, five matrices.
42889
43275
  Extra doc: https://github.com/casadi/casadi/wiki/L_4n
42890
43276
 
42891
43277
  Doc source:
42892
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L533
43278
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L570
42893
43279
 
42894
43280
  Implementation:
42895
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L533-L536
43281
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L570-L573
42896
43282
 
42897
43283
  ";
42898
43284
 
@@ -42903,10 +43289,10 @@ Concatenate along diagonal, five matrices.
42903
43289
  Extra doc: https://github.com/casadi/casadi/wiki/L_4n
42904
43290
 
42905
43291
  Doc source:
42906
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L533
43292
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L570
42907
43293
 
42908
43294
  Implementation:
42909
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L533-L536
43295
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L570-L573
42910
43296
 
42911
43297
  ";
42912
43298
 
@@ -42917,10 +43303,10 @@ Concatenate along diagonal, five matrices.
42917
43303
  Extra doc: https://github.com/casadi/casadi/wiki/L_4n
42918
43304
 
42919
43305
  Doc source:
42920
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L533
43306
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L570
42921
43307
 
42922
43308
  Implementation:
42923
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L533-L536
43309
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L570-L573
42924
43310
 
42925
43311
  ";
42926
43312
 
@@ -42934,10 +43320,10 @@ Concatenate along diagonal, six matrices.
42934
43320
  Extra doc: https://github.com/casadi/casadi/wiki/L_4o
42935
43321
 
42936
43322
  Doc source:
42937
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L541
43323
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L578
42938
43324
 
42939
43325
  Implementation:
42940
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L541-L544
43326
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L578-L581
42941
43327
 
42942
43328
  ";
42943
43329
 
@@ -42948,10 +43334,10 @@ Concatenate along diagonal, six matrices.
42948
43334
  Extra doc: https://github.com/casadi/casadi/wiki/L_4o
42949
43335
 
42950
43336
  Doc source:
42951
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L541
43337
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L578
42952
43338
 
42953
43339
  Implementation:
42954
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L541-L544
43340
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L578-L581
42955
43341
 
42956
43342
  ";
42957
43343
 
@@ -42962,10 +43348,10 @@ Concatenate along diagonal, six matrices.
42962
43348
  Extra doc: https://github.com/casadi/casadi/wiki/L_4o
42963
43349
 
42964
43350
  Doc source:
42965
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L541
43351
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L578
42966
43352
 
42967
43353
  Implementation:
42968
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L541-L544
43354
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L578-L581
42969
43355
 
42970
43356
  ";
42971
43357
 
@@ -42994,10 +43380,10 @@ diagcat(diagsplit(x, ...)) = x
42994
43380
  Extra doc: https://github.com/casadi/casadi/wiki/L_3q
42995
43381
 
42996
43382
  Doc source:
42997
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L247
43383
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L284
42998
43384
 
42999
43385
  Implementation:
43000
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L247-L251
43386
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L284-L288
43001
43387
 
43002
43388
  ";
43003
43389
 
@@ -43023,10 +43409,10 @@ diagcat(diagsplit(x, ...)) = x
43023
43409
  Extra doc: https://github.com/casadi/casadi/wiki/L_3q
43024
43410
 
43025
43411
  Doc source:
43026
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L247
43412
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L284
43027
43413
 
43028
43414
  Implementation:
43029
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L247-L251
43415
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L284-L288
43030
43416
 
43031
43417
  ";
43032
43418
 
@@ -43052,10 +43438,10 @@ diagcat(diagsplit(x, ...)) = x
43052
43438
  Extra doc: https://github.com/casadi/casadi/wiki/L_3q
43053
43439
 
43054
43440
  Doc source:
43055
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L247
43441
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L284
43056
43442
 
43057
43443
  Implementation:
43058
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L247-L251
43444
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L284-L288
43059
43445
 
43060
43446
  ";
43061
43447
 
@@ -43078,10 +43464,10 @@ diagcat(diagsplit(x, ...)) = x
43078
43464
  Extra doc: https://github.com/casadi/casadi/wiki/L_3r
43079
43465
 
43080
43466
  Doc source:
43081
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L262
43467
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L299
43082
43468
 
43083
43469
  Implementation:
43084
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L262-L264
43470
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L299-L301
43085
43471
 
43086
43472
  ";
43087
43473
 
@@ -43102,10 +43488,10 @@ diagcat(diagsplit(x, ...)) = x
43102
43488
  Extra doc: https://github.com/casadi/casadi/wiki/L_3r
43103
43489
 
43104
43490
  Doc source:
43105
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L262
43491
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L299
43106
43492
 
43107
43493
  Implementation:
43108
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L262-L264
43494
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L299-L301
43109
43495
 
43110
43496
  ";
43111
43497
 
@@ -43126,10 +43512,10 @@ diagcat(diagsplit(x, ...)) = x
43126
43512
  Extra doc: https://github.com/casadi/casadi/wiki/L_3r
43127
43513
 
43128
43514
  Doc source:
43129
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L262
43515
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L299
43130
43516
 
43131
43517
  Implementation:
43132
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L262-L264
43518
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L299-L301
43133
43519
 
43134
43520
  ";
43135
43521
 
@@ -43150,10 +43536,10 @@ diagsplit(diagsplit(x, ...)) = x
43150
43536
  Extra doc: https://github.com/casadi/casadi/wiki/L_3s
43151
43537
 
43152
43538
  Doc source:
43153
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L274
43539
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L311
43154
43540
 
43155
43541
  Implementation:
43156
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L274-L276
43542
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L311-L313
43157
43543
 
43158
43544
  ";
43159
43545
 
@@ -43172,10 +43558,10 @@ diagsplit(diagsplit(x, ...)) = x
43172
43558
  Extra doc: https://github.com/casadi/casadi/wiki/L_3s
43173
43559
 
43174
43560
  Doc source:
43175
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L274
43561
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L311
43176
43562
 
43177
43563
  Implementation:
43178
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L274-L276
43564
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L311-L313
43179
43565
 
43180
43566
  ";
43181
43567
 
@@ -43194,10 +43580,10 @@ diagsplit(diagsplit(x, ...)) = x
43194
43580
  Extra doc: https://github.com/casadi/casadi/wiki/L_3s
43195
43581
 
43196
43582
  Doc source:
43197
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L274
43583
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L311
43198
43584
 
43199
43585
  Implementation:
43200
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L274-L276
43586
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L311-L313
43201
43587
 
43202
43588
  ";
43203
43589
 
@@ -43221,10 +43607,10 @@ diagsplit(diagsplit(x, ...)) = x
43221
43607
  Extra doc: https://github.com/casadi/casadi/wiki/L_3t
43222
43608
 
43223
43609
  Doc source:
43224
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L287
43610
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L324
43225
43611
 
43226
43612
  Implementation:
43227
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L287-L289
43613
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L324-L326
43228
43614
 
43229
43615
  ";
43230
43616
 
@@ -43246,10 +43632,10 @@ diagsplit(diagsplit(x, ...)) = x
43246
43632
  Extra doc: https://github.com/casadi/casadi/wiki/L_3t
43247
43633
 
43248
43634
  Doc source:
43249
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L287
43635
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L324
43250
43636
 
43251
43637
  Implementation:
43252
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L287-L289
43638
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L324-L326
43253
43639
 
43254
43640
  ";
43255
43641
 
@@ -43271,10 +43657,10 @@ diagsplit(diagsplit(x, ...)) = x
43271
43657
  Extra doc: https://github.com/casadi/casadi/wiki/L_3t
43272
43658
 
43273
43659
  Doc source:
43274
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L287
43660
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L324
43275
43661
 
43276
43662
  Implementation:
43277
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L287-L289
43663
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L324-L326
43278
43664
 
43279
43665
  ";
43280
43666
 
@@ -43287,10 +43673,10 @@ concatenate vertically while vectorizing all arguments with vec
43287
43673
  Extra doc: https://github.com/casadi/casadi/wiki/L_3u
43288
43674
 
43289
43675
  Doc source:
43290
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L294
43676
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L331
43291
43677
 
43292
43678
  Implementation:
43293
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L294-L296
43679
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L331-L333
43294
43680
 
43295
43681
  ";
43296
43682
 
@@ -43301,10 +43687,10 @@ concatenate vertically while vectorizing all arguments with vec
43301
43687
  Extra doc: https://github.com/casadi/casadi/wiki/L_3u
43302
43688
 
43303
43689
  Doc source:
43304
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L294
43690
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L331
43305
43691
 
43306
43692
  Implementation:
43307
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L294-L296
43693
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L331-L333
43308
43694
 
43309
43695
  ";
43310
43696
 
@@ -43315,10 +43701,10 @@ concatenate vertically while vectorizing all arguments with vec
43315
43701
  Extra doc: https://github.com/casadi/casadi/wiki/L_3u
43316
43702
 
43317
43703
  Doc source:
43318
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L294
43704
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L331
43319
43705
 
43320
43706
  Implementation:
43321
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L294-L296
43707
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L331-L333
43322
43708
 
43323
43709
  ";
43324
43710
 
@@ -43331,10 +43717,10 @@ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp
43331
43717
  Extra doc: https://github.com/casadi/casadi/wiki/L_3v
43332
43718
 
43333
43719
  Doc source:
43334
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L301
43720
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L338
43335
43721
 
43336
43722
  Implementation:
43337
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L301-L303
43723
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L338-L340
43338
43724
 
43339
43725
  ";
43340
43726
 
@@ -43345,10 +43731,10 @@ Matrix product of two matrices.
43345
43731
  Extra doc: https://github.com/casadi/casadi/wiki/L_3v
43346
43732
 
43347
43733
  Doc source:
43348
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L301
43734
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L338
43349
43735
 
43350
43736
  Implementation:
43351
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L301-L303
43737
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L338-L340
43352
43738
 
43353
43739
  ";
43354
43740
 
@@ -43359,10 +43745,10 @@ Matrix product of two matrices.
43359
43745
  Extra doc: https://github.com/casadi/casadi/wiki/L_3v
43360
43746
 
43361
43747
  Doc source:
43362
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L301
43748
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L338
43363
43749
 
43364
43750
  Implementation:
43365
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L301-L303
43751
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L338-L340
43366
43752
 
43367
43753
  ";
43368
43754
 
@@ -43375,10 +43761,10 @@ std::vector< MatType > &args) "
43375
43761
  Extra doc: https://github.com/casadi/casadi/wiki/L_3w
43376
43762
 
43377
43763
  Doc source:
43378
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L308
43764
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L345
43379
43765
 
43380
43766
  Implementation:
43381
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L308-L310
43767
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L345-L347
43382
43768
 
43383
43769
  ";
43384
43770
 
@@ -43389,10 +43775,10 @@ Matrix product of n matrices.
43389
43775
  Extra doc: https://github.com/casadi/casadi/wiki/L_3w
43390
43776
 
43391
43777
  Doc source:
43392
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L308
43778
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L345
43393
43779
 
43394
43780
  Implementation:
43395
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L308-L310
43781
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L345-L347
43396
43782
 
43397
43783
  ";
43398
43784
 
@@ -43403,10 +43789,10 @@ Matrix product of n matrices.
43403
43789
  Extra doc: https://github.com/casadi/casadi/wiki/L_3w
43404
43790
 
43405
43791
  Doc source:
43406
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L308
43792
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L345
43407
43793
 
43408
43794
  Implementation:
43409
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L308-L310
43795
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L345-L347
43410
43796
 
43411
43797
  ";
43412
43798
 
@@ -43427,10 +43813,10 @@ z+mtimes(x,y).project(z.sparsity()).
43427
43813
  Extra doc: https://github.com/casadi/casadi/wiki/L_3x
43428
43814
 
43429
43815
  Doc source:
43430
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L321
43816
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L358
43431
43817
 
43432
43818
  Implementation:
43433
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L321-L323
43819
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L358-L360
43434
43820
 
43435
43821
  ";
43436
43822
 
@@ -43449,10 +43835,10 @@ z+mtimes(x,y).project(z.sparsity()).
43449
43835
  Extra doc: https://github.com/casadi/casadi/wiki/L_3x
43450
43836
 
43451
43837
  Doc source:
43452
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L321
43838
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L358
43453
43839
 
43454
43840
  Implementation:
43455
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L321-L323
43841
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L358-L360
43456
43842
 
43457
43843
  ";
43458
43844
 
@@ -43471,10 +43857,10 @@ z+mtimes(x,y).project(z.sparsity()).
43471
43857
  Extra doc: https://github.com/casadi/casadi/wiki/L_3x
43472
43858
 
43473
43859
  Doc source:
43474
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L321
43860
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L358
43475
43861
 
43476
43862
  Implementation:
43477
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L321-L323
43863
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L358-L360
43478
43864
 
43479
43865
  ";
43480
43866
 
@@ -43487,10 +43873,10 @@ Transpose.
43487
43873
  Extra doc: https://github.com/casadi/casadi/wiki/L_3y
43488
43874
 
43489
43875
  Doc source:
43490
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L328
43876
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L365
43491
43877
 
43492
43878
  Implementation:
43493
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L328-L330
43879
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L365-L367
43494
43880
 
43495
43881
  ";
43496
43882
 
@@ -43501,10 +43887,10 @@ Transpose.
43501
43887
  Extra doc: https://github.com/casadi/casadi/wiki/L_3y
43502
43888
 
43503
43889
  Doc source:
43504
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L328
43890
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L365
43505
43891
 
43506
43892
  Implementation:
43507
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L328-L330
43893
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L365-L367
43508
43894
 
43509
43895
  ";
43510
43896
 
@@ -43515,10 +43901,10 @@ Transpose.
43515
43901
  Extra doc: https://github.com/casadi/casadi/wiki/L_3y
43516
43902
 
43517
43903
  Doc source:
43518
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L328
43904
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L365
43519
43905
 
43520
43906
  Implementation:
43521
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L328-L330
43907
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L365-L367
43522
43908
 
43523
43909
  ";
43524
43910
 
@@ -43545,10 +43931,10 @@ d
43545
43931
  Extra doc: https://github.com/casadi/casadi/wiki/L_3z
43546
43932
 
43547
43933
  Doc source:
43548
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L349
43934
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L386
43549
43935
 
43550
43936
  Implementation:
43551
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L349-L351
43937
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L386-L388
43552
43938
 
43553
43939
  ";
43554
43940
 
@@ -43573,10 +43959,10 @@ d
43573
43959
  Extra doc: https://github.com/casadi/casadi/wiki/L_3z
43574
43960
 
43575
43961
  Doc source:
43576
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L349
43962
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L386
43577
43963
 
43578
43964
  Implementation:
43579
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L349-L351
43965
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L386-L388
43580
43966
 
43581
43967
  ";
43582
43968
 
@@ -43601,10 +43987,10 @@ d
43601
43987
  Extra doc: https://github.com/casadi/casadi/wiki/L_3z
43602
43988
 
43603
43989
  Doc source:
43604
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L349
43990
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L386
43605
43991
 
43606
43992
  Implementation:
43607
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L349-L351
43993
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L386-L388
43608
43994
 
43609
43995
  ";
43610
43996
 
@@ -43617,10 +44003,10 @@ Returns a reshaped version of the matrix.
43617
44003
  Extra doc: https://github.com/casadi/casadi/wiki/L_40
43618
44004
 
43619
44005
  Doc source:
43620
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L356
44006
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L393
43621
44007
 
43622
44008
  Implementation:
43623
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L356-L358
44009
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L393-L395
43624
44010
 
43625
44011
  ";
43626
44012
 
@@ -43631,10 +44017,10 @@ Returns a reshaped version of the matrix.
43631
44017
  Extra doc: https://github.com/casadi/casadi/wiki/L_40
43632
44018
 
43633
44019
  Doc source:
43634
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L356
44020
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L393
43635
44021
 
43636
44022
  Implementation:
43637
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L356-L358
44023
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L393-L395
43638
44024
 
43639
44025
  ";
43640
44026
 
@@ -43645,10 +44031,10 @@ Returns a reshaped version of the matrix.
43645
44031
  Extra doc: https://github.com/casadi/casadi/wiki/L_40
43646
44032
 
43647
44033
  Doc source:
43648
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L356
44034
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L393
43649
44035
 
43650
44036
  Implementation:
43651
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L356-L358
44037
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L393-L395
43652
44038
 
43653
44039
  ";
43654
44040
 
@@ -43662,10 +44048,10 @@ vector.
43662
44048
  Extra doc: https://github.com/casadi/casadi/wiki/L_41
43663
44049
 
43664
44050
  Doc source:
43665
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L363
44051
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L400
43666
44052
 
43667
44053
  Implementation:
43668
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L363-L365
44054
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L400-L402
43669
44055
 
43670
44056
  ";
43671
44057
 
@@ -43676,10 +44062,10 @@ Returns a reshaped version of the matrix, dimensions as a vector.
43676
44062
  Extra doc: https://github.com/casadi/casadi/wiki/L_41
43677
44063
 
43678
44064
  Doc source:
43679
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L363
44065
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L400
43680
44066
 
43681
44067
  Implementation:
43682
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L363-L365
44068
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L400-L402
43683
44069
 
43684
44070
  ";
43685
44071
 
@@ -43690,10 +44076,10 @@ Returns a reshaped version of the matrix, dimensions as a vector.
43690
44076
  Extra doc: https://github.com/casadi/casadi/wiki/L_41
43691
44077
 
43692
44078
  Doc source:
43693
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L363
44079
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L400
43694
44080
 
43695
44081
  Implementation:
43696
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L363-L365
44082
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L400-L402
43697
44083
 
43698
44084
  ";
43699
44085
 
@@ -43706,10 +44092,10 @@ Reshape the matrix.
43706
44092
  Extra doc: https://github.com/casadi/casadi/wiki/L_42
43707
44093
 
43708
44094
  Doc source:
43709
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L370
44095
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L407
43710
44096
 
43711
44097
  Implementation:
43712
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L370-L372
44098
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L407-L409
43713
44099
 
43714
44100
  ";
43715
44101
 
@@ -43720,10 +44106,10 @@ Reshape the matrix.
43720
44106
  Extra doc: https://github.com/casadi/casadi/wiki/L_42
43721
44107
 
43722
44108
  Doc source:
43723
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L370
44109
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L407
43724
44110
 
43725
44111
  Implementation:
43726
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L370-L372
44112
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L407-L409
43727
44113
 
43728
44114
  ";
43729
44115
 
@@ -43734,10 +44120,10 @@ Reshape the matrix.
43734
44120
  Extra doc: https://github.com/casadi/casadi/wiki/L_42
43735
44121
 
43736
44122
  Doc source:
43737
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L370
44123
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L407
43738
44124
 
43739
44125
  Implementation:
43740
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L370-L372
44126
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L407-L409
43741
44127
 
43742
44128
  ";
43743
44129
 
@@ -43750,10 +44136,10 @@ Cast matrix nonzeros to different Sparsity.
43750
44136
  Extra doc: https://github.com/casadi/casadi/wiki/L_24z
43751
44137
 
43752
44138
  Doc source:
43753
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L377
44139
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L414
43754
44140
 
43755
44141
  Implementation:
43756
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L377-L379
44142
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L414-L416
43757
44143
 
43758
44144
  ";
43759
44145
 
@@ -43764,10 +44150,10 @@ Cast matrix nonzeros to different Sparsity.
43764
44150
  Extra doc: https://github.com/casadi/casadi/wiki/L_24z
43765
44151
 
43766
44152
  Doc source:
43767
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L377
44153
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L414
43768
44154
 
43769
44155
  Implementation:
43770
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L377-L379
44156
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L414-L416
43771
44157
 
43772
44158
  ";
43773
44159
 
@@ -43779,10 +44165,10 @@ Cast matrix nonzeros to different Sparsity.
43779
44165
  Extra doc: https://github.com/casadi/casadi/wiki/L_24z
43780
44166
 
43781
44167
  Doc source:
43782
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L377
44168
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L414
43783
44169
 
43784
44170
  Implementation:
43785
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L377-L379
44171
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L414-L416
43786
44172
 
43787
44173
  ";
43788
44174
 
@@ -43795,10 +44181,10 @@ Obtain the structural rank of a sparsity-pattern.
43795
44181
  Extra doc: https://github.com/casadi/casadi/wiki/L_43
43796
44182
 
43797
44183
  Doc source:
43798
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L384
44184
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L421
43799
44185
 
43800
44186
  Implementation:
43801
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L384-L386
44187
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L421-L423
43802
44188
 
43803
44189
  ";
43804
44190
 
@@ -43811,10 +44197,10 @@ MatType &x, const MatType &y) "
43811
44197
  Extra doc: https://github.com/casadi/casadi/wiki/L_44
43812
44198
 
43813
44199
  Doc source:
43814
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L391
44200
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L428
43815
44201
 
43816
44202
  Implementation:
43817
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L391-L393
44203
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L428-L430
43818
44204
 
43819
44205
  ";
43820
44206
 
@@ -43827,10 +44213,10 @@ Get the upper triangular part of a matrix.
43827
44213
  Extra doc: https://github.com/casadi/casadi/wiki/L_45
43828
44214
 
43829
44215
  Doc source:
43830
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L398
44216
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L435
43831
44217
 
43832
44218
  Implementation:
43833
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L398-L400
44219
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L435-L437
43834
44220
 
43835
44221
  ";
43836
44222
 
@@ -43841,10 +44227,10 @@ Get the upper triangular part of a matrix.
43841
44227
  Extra doc: https://github.com/casadi/casadi/wiki/L_45
43842
44228
 
43843
44229
  Doc source:
43844
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L398
44230
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L435
43845
44231
 
43846
44232
  Implementation:
43847
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L398-L400
44233
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L435-L437
43848
44234
 
43849
44235
  ";
43850
44236
 
@@ -43855,10 +44241,10 @@ Get the upper triangular part of a matrix.
43855
44241
  Extra doc: https://github.com/casadi/casadi/wiki/L_45
43856
44242
 
43857
44243
  Doc source:
43858
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L398
44244
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L435
43859
44245
 
43860
44246
  Implementation:
43861
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L398-L400
44247
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L435-L437
43862
44248
 
43863
44249
  ";
43864
44250
 
@@ -43871,10 +44257,10 @@ Get the lower triangular part of a matrix.
43871
44257
  Extra doc: https://github.com/casadi/casadi/wiki/L_46
43872
44258
 
43873
44259
  Doc source:
43874
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L405
44260
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L442
43875
44261
 
43876
44262
  Implementation:
43877
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L405-L407
44263
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L442-L444
43878
44264
 
43879
44265
  ";
43880
44266
 
@@ -43885,10 +44271,10 @@ Get the lower triangular part of a matrix.
43885
44271
  Extra doc: https://github.com/casadi/casadi/wiki/L_46
43886
44272
 
43887
44273
  Doc source:
43888
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L405
44274
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L442
43889
44275
 
43890
44276
  Implementation:
43891
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L405-L407
44277
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L442-L444
43892
44278
 
43893
44279
  ";
43894
44280
 
@@ -43899,10 +44285,10 @@ Get the lower triangular part of a matrix.
43899
44285
  Extra doc: https://github.com/casadi/casadi/wiki/L_46
43900
44286
 
43901
44287
  Doc source:
43902
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L405
44288
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L442
43903
44289
 
43904
44290
  Implementation:
43905
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L405-L407
44291
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L442-L444
43906
44292
 
43907
44293
  ";
43908
44294
 
@@ -43917,10 +44303,10 @@ Creates a block matrix in which each element (i, j) is a_ij*b
43917
44303
  Extra doc: https://github.com/casadi/casadi/wiki/L_47
43918
44304
 
43919
44305
  Doc source:
43920
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L414
44306
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L451
43921
44307
 
43922
44308
  Implementation:
43923
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L414-L416
44309
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L451-L453
43924
44310
 
43925
44311
  ";
43926
44312
 
@@ -43933,10 +44319,10 @@ Creates a block matrix in which each element (i, j) is a_ij*b
43933
44319
  Extra doc: https://github.com/casadi/casadi/wiki/L_47
43934
44320
 
43935
44321
  Doc source:
43936
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L414
44322
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L451
43937
44323
 
43938
44324
  Implementation:
43939
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L414-L416
44325
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L451-L453
43940
44326
 
43941
44327
  ";
43942
44328
 
@@ -43949,10 +44335,10 @@ Creates a block matrix in which each element (i, j) is a_ij*b
43949
44335
  Extra doc: https://github.com/casadi/casadi/wiki/L_47
43950
44336
 
43951
44337
  Doc source:
43952
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L414
44338
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L451
43953
44339
 
43954
44340
  Implementation:
43955
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L414-L416
44341
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L451-L453
43956
44342
 
43957
44343
  ";
43958
44344
 
@@ -43965,10 +44351,10 @@ Repeat matrix A n times vertically and m times horizontally.
43965
44351
  Extra doc: https://github.com/casadi/casadi/wiki/L_48
43966
44352
 
43967
44353
  Doc source:
43968
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L421
44354
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L458
43969
44355
 
43970
44356
  Implementation:
43971
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L421-L423
44357
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L458-L460
43972
44358
 
43973
44359
  ";
43974
44360
 
@@ -43979,10 +44365,10 @@ Repeat matrix A n times vertically and m times horizontally.
43979
44365
  Extra doc: https://github.com/casadi/casadi/wiki/L_48
43980
44366
 
43981
44367
  Doc source:
43982
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L421
44368
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L458
43983
44369
 
43984
44370
  Implementation:
43985
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L421-L423
44371
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L458-L460
43986
44372
 
43987
44373
  ";
43988
44374
 
@@ -43993,10 +44379,10 @@ Repeat matrix A n times vertically and m times horizontally.
43993
44379
  Extra doc: https://github.com/casadi/casadi/wiki/L_48
43994
44380
 
43995
44381
  Doc source:
43996
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L421
44382
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L458
43997
44383
 
43998
44384
  Implementation:
43999
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L421-L423
44385
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L458-L460
44000
44386
 
44001
44387
  ";
44002
44388
 
@@ -44009,10 +44395,10 @@ Repeat matrix A n times vertically and m times horizontally.
44009
44395
  Extra doc: https://github.com/casadi/casadi/wiki/L_49
44010
44396
 
44011
44397
  Doc source:
44012
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L428
44398
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L465
44013
44399
 
44014
44400
  Implementation:
44015
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L428-L430
44401
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L465-L467
44016
44402
 
44017
44403
  ";
44018
44404
 
@@ -44023,10 +44409,10 @@ Repeat matrix A n times vertically and m times horizontally.
44023
44409
  Extra doc: https://github.com/casadi/casadi/wiki/L_49
44024
44410
 
44025
44411
  Doc source:
44026
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L428
44412
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L465
44027
44413
 
44028
44414
  Implementation:
44029
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L428-L430
44415
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L465-L467
44030
44416
 
44031
44417
  ";
44032
44418
 
@@ -44037,10 +44423,10 @@ Repeat matrix A n times vertically and m times horizontally.
44037
44423
  Extra doc: https://github.com/casadi/casadi/wiki/L_49
44038
44424
 
44039
44425
  Doc source:
44040
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L428
44426
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L465
44041
44427
 
44042
44428
  Implementation:
44043
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L428-L430
44429
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L465-L467
44044
44430
 
44045
44431
  ";
44046
44432
 
@@ -44053,10 +44439,10 @@ Return a row-wise summation of elements.
44053
44439
  Extra doc: https://github.com/casadi/casadi/wiki/L_4p
44054
44440
 
44055
44441
  Doc source:
44056
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L549
44442
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L586
44057
44443
 
44058
44444
  Implementation:
44059
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L549-L549
44445
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L586-L586
44060
44446
 
44061
44447
  ";
44062
44448
 
@@ -44067,10 +44453,10 @@ Return a row-wise summation of elements.
44067
44453
  Extra doc: https://github.com/casadi/casadi/wiki/L_4p
44068
44454
 
44069
44455
  Doc source:
44070
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L549
44456
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L586
44071
44457
 
44072
44458
  Implementation:
44073
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L549-L549
44459
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L586-L586
44074
44460
 
44075
44461
  ";
44076
44462
 
@@ -44081,10 +44467,10 @@ Return a row-wise summation of elements.
44081
44467
  Extra doc: https://github.com/casadi/casadi/wiki/L_4p
44082
44468
 
44083
44469
  Doc source:
44084
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L549
44470
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L586
44085
44471
 
44086
44472
  Implementation:
44087
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L549-L549
44473
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L586-L586
44088
44474
 
44089
44475
  ";
44090
44476
 
@@ -44097,10 +44483,10 @@ Return a column-wise summation of elements.
44097
44483
  Extra doc: https://github.com/casadi/casadi/wiki/L_4q
44098
44484
 
44099
44485
  Doc source:
44100
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L554
44486
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L591
44101
44487
 
44102
44488
  Implementation:
44103
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L554-L554
44489
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L591-L591
44104
44490
 
44105
44491
  ";
44106
44492
 
@@ -44111,10 +44497,10 @@ Return a column-wise summation of elements.
44111
44497
  Extra doc: https://github.com/casadi/casadi/wiki/L_4q
44112
44498
 
44113
44499
  Doc source:
44114
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L554
44500
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L591
44115
44501
 
44116
44502
  Implementation:
44117
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L554-L554
44503
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L591-L591
44118
44504
 
44119
44505
  ";
44120
44506
 
@@ -44125,10 +44511,10 @@ Return a column-wise summation of elements.
44125
44511
  Extra doc: https://github.com/casadi/casadi/wiki/L_4q
44126
44512
 
44127
44513
  Doc source:
44128
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L554
44514
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L591
44129
44515
 
44130
44516
  Implementation:
44131
- https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L554-L554
44517
+ https://github.com/casadi/casadi/blob/develop/casadi/core/sparsity_interface.hpp#L591-L591
44132
44518
 
44133
44519
  ";
44134
44520
 
@@ -47416,7 +47802,10 @@ https://github.com/casadi/casadi/blob/develop/casadi/core/shared_object.cpp#L129
47416
47802
  ";
47417
47803
 
47418
47804
 
47419
- // File: namespace_0d359.xml
47805
+ // File: namespace_0d373.xml
47806
+
47807
+
47808
+ // File: namespacealpaqa.xml
47420
47809
 
47421
47810
 
47422
47811
  // File: namespacecasadi.xml
@@ -49802,6 +50191,8 @@ List of plugins
49802
50191
 
49803
50192
  - cplex
49804
50193
 
50194
+ - fatrop
50195
+
49805
50196
  - gurobi
49806
50197
 
49807
50198
  - highs
@@ -49960,6 +50351,61 @@ Extra doc: https://github.com/casadi/casadi/wiki/L_22a
49960
50351
 
49961
50352
 
49962
50353
 
50354
+ --------------------------------------------------------------------------------
50355
+
50356
+ fatrop
50357
+ ------
50358
+
50359
+
50360
+
50361
+ Interface to Fatrop Solver
50362
+
50363
+ In order to use this interface, you must:
50364
+
50365
+ Decision variables must only by state and control, and the variable
50366
+
50367
+ ordering must be [x0 u0 x1 u1 ...]
50368
+
50369
+ The constraints must be in order: [ gap0 lincon0 gap1 lincon1 ]
50370
+
50371
+ gap: Ak+1 = Ak xk + Bk uk lincon: yk= Ck xk + Dk uk
50372
+
50373
+
50374
+
50375
+ ::
50376
+
50377
+ A0 B0 -I
50378
+ C0 D0
50379
+ A1 B1 -I
50380
+ C1 D1
50381
+
50382
+
50383
+
50384
+ where I must be a diagonal sparse matrix
50385
+ Either supply all of N, nx, ng, nu
50386
+ options or rely on automatic
50387
+ detection
50388
+
50389
+ Extra doc: https://github.com/casadi/casadi/wiki/L_27g
50390
+
50391
+ >List of available options
50392
+
50393
+ +--------+--------------+-----------------------------------------------+
50394
+ | Id | Type | Description |
50395
+ +========+==============+===============================================+
50396
+ | N | OT_INT | OCP horizon |
50397
+ +--------+--------------+-----------------------------------------------+
50398
+ | fatrop | OT_DICT | Options to be passed to fatrop |
50399
+ +--------+--------------+-----------------------------------------------+
50400
+ | ng | OT_INTVECTOR | Number of non-dynamic constraints, length N+1 |
50401
+ +--------+--------------+-----------------------------------------------+
50402
+ | nu | OT_INTVECTOR | Number of controls, length N |
50403
+ +--------+--------------+-----------------------------------------------+
50404
+ | nx | OT_INTVECTOR | Number of states, length N+1 |
50405
+ +--------+--------------+-----------------------------------------------+
50406
+
50407
+
50408
+
49963
50409
  --------------------------------------------------------------------------------
49964
50410
 
49965
50411
  gurobi
@@ -50023,7 +50469,7 @@ hpipm
50023
50469
 
50024
50470
 
50025
50471
 
50026
- Interface to HMPC Solver
50472
+ Interface to HPIPM Solver
50027
50473
 
50028
50474
  In order to use this interface, you must:
50029
50475
 
@@ -57256,6 +57702,11 @@ https://github.com/casadi/casadi/blob/develop/casadi/core/slice.cpp#L255-L289
57256
57702
 
57257
57703
  [INTERNAL] ";
57258
57704
 
57705
+ %feature("docstring") casadi::casadi_sleqp_func_create(SleqpFunc **star,
57706
+ int num_vars, int num_cons, SLEQPMemory *m) "
57707
+
57708
+ [INTERNAL] ";
57709
+
57259
57710
  %feature("docstring") casadi::slicot_mb03vd(int n, int p, int ilo, int ihi,
57260
57711
  double *a, int lda1, int lda2, double *tau, int ldtau, double *dwork) "
57261
57712
 
@@ -57284,6 +57735,9 @@ tol, int *iwork, double *dwork, int ldwork) "
57284
57735
  // File: namespacecasadi_1_1IndexRecution.xml
57285
57736
 
57286
57737
 
57738
+ // File: namespacefatrop.xml
57739
+
57740
+
57287
57741
  // File: namespaceproxsuite_1_1proxqp.xml
57288
57742
 
57289
57743