casadi 3.6.7__cp313-none-macosx_11_0_arm64.whl → 3.7.1__cp313-none-macosx_11_0_arm64.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 (459) hide show
  1. casadi/_casadi.so +0 -0
  2. casadi/casadi-cli +0 -0
  3. casadi/casadi.py +6531 -3039
  4. casadi/cbc +0 -0
  5. casadi/clp +0 -0
  6. casadi/cmake/casadi-config-version.cmake +1 -1
  7. casadi/cmake/casadi-config.cmake +1 -1
  8. casadi/cmake/casadi-targets-release.cmake +5 -5
  9. casadi/cmake/casadi-targets.cmake +7 -7
  10. casadi/{lib/cmake/tinyxml2/tinyxml2-config-version.cmake → cmake/ghc_filesystem/ghc_filesystem-config-version.cmake} +30 -10
  11. casadi/cmake/ghc_filesystem/ghc_filesystem-config.cmake +30 -0
  12. casadi/{lib/cmake/tinyxml2/tinyxml2-static-targets.cmake → cmake/ghc_filesystem/ghc_filesystem-targets.cmake} +10 -10
  13. casadi/cmake/highs/highs-targets-release.cmake +2 -2
  14. casadi/cmake/highs/highs-targets.cmake +3 -3
  15. casadi/cmake/libzip/libzip-config-version.cmake +43 -0
  16. casadi/cmake/libzip/libzip-config.cmake +69 -0
  17. casadi/cmake/libzip/libzip-targets-release.cmake +19 -0
  18. casadi/cmake/libzip/libzip-targets.cmake +107 -0
  19. casadi/cmake/libzip/modules/FindMbedTLS.cmake +141 -0
  20. casadi/cmake/libzip/modules/FindNettle.cmake +141 -0
  21. casadi/cmake/libzip/modules/Findzstd.cmake +186 -0
  22. casadi/cmake/osqp/osqp-targets.cmake +2 -2
  23. casadi/cmake/proxsuite/proxsuiteTargets.cmake +2 -2
  24. casadi/cmake/qdldl/qdldl-targets.cmake +2 -2
  25. casadi/cmake/sleqp/sleqp-targets.cmake +2 -2
  26. casadi/cmake/trlib/trlib-config.cmake +2 -2
  27. casadi/highs +0 -0
  28. casadi/include/casadi/casadi.i +276 -47
  29. casadi/include/casadi/config.h +11 -11
  30. casadi/include/casadi/core/archiver.hpp +58 -0
  31. casadi/include/casadi/core/blazing_spline.hpp +47 -0
  32. casadi/include/casadi/core/calculus.hpp +57 -2
  33. casadi/include/casadi/core/callback.hpp +9 -0
  34. casadi/include/casadi/core/casadi_common.hpp +37 -0
  35. casadi/include/casadi/core/casadi_meta.hpp +15 -0
  36. casadi/include/casadi/core/casadi_misc.hpp +21 -0
  37. casadi/include/casadi/core/code_generator.hpp +115 -19
  38. casadi/include/casadi/core/core.hpp +5 -0
  39. casadi/include/casadi/core/dae_builder.hpp +303 -141
  40. casadi/include/casadi/core/dm.hpp +3 -0
  41. casadi/include/casadi/core/filesystem.hpp +58 -0
  42. casadi/include/casadi/core/fmu.hpp +62 -16
  43. casadi/include/casadi/core/function.hpp +24 -0
  44. casadi/include/casadi/core/generic_matrix.hpp +214 -7
  45. casadi/include/casadi/core/generic_shared.hpp +395 -0
  46. casadi/include/casadi/core/generic_shared_impl.hpp +218 -0
  47. casadi/include/casadi/core/generic_shared_internal.hpp +215 -0
  48. casadi/include/casadi/core/generic_type.hpp +3 -0
  49. casadi/include/casadi/core/global_options.hpp +10 -0
  50. casadi/include/casadi/core/integrator.hpp +41 -7
  51. casadi/include/casadi/core/matrix_decl.hpp +71 -0
  52. casadi/include/casadi/core/mx.hpp +63 -2
  53. casadi/include/casadi/core/nlp_builder.hpp +2 -1
  54. casadi/include/casadi/core/options.hpp +6 -3
  55. casadi/include/casadi/core/optistack.hpp +43 -9
  56. casadi/include/casadi/core/printable.hpp +8 -0
  57. casadi/include/casadi/core/resource.hpp +107 -0
  58. casadi/include/casadi/core/runtime/casadi_blazing_1d_boor_eval.hpp +112 -0
  59. casadi/include/casadi/core/runtime/casadi_blazing_2d_boor_eval.hpp +311 -0
  60. casadi/include/casadi/core/runtime/casadi_blazing_3d_boor_eval.hpp +645 -0
  61. casadi/include/casadi/core/runtime/casadi_blazing_de_boor.hpp +101 -0
  62. casadi/include/casadi/core/runtime/casadi_finite_diff.hpp +1 -1
  63. casadi/include/casadi/core/runtime/casadi_nlp.hpp +8 -2
  64. casadi/include/casadi/core/runtime/casadi_print_canonical.hpp +55 -0
  65. casadi/include/casadi/core/runtime/casadi_print_scalar.hpp +25 -0
  66. casadi/include/casadi/core/runtime/casadi_print_vector.hpp +32 -0
  67. casadi/include/casadi/core/runtime/casadi_printme.hpp +26 -0
  68. casadi/include/casadi/core/serializer.hpp +13 -5
  69. casadi/include/casadi/core/serializing_stream.hpp +9 -2
  70. casadi/include/casadi/core/shared_object.hpp +73 -161
  71. casadi/include/casadi/core/sparsity.hpp +13 -1
  72. casadi/include/casadi/core/sparsity_interface.hpp +19 -1
  73. casadi/include/casadi/core/sx.hpp +41 -0
  74. casadi/include/casadi/core/sx_elem.hpp +25 -0
  75. casadi/include/casadi/core/xml_node.hpp +5 -0
  76. casadi/include/casadi/doc.i +10026 -6513
  77. casadi/include/casadi/doc_merged.i +6744 -4449
  78. casadi/include/casadi/valgrind-casadi.supp +138 -0
  79. casadi/include/casadi/valgrind-python.supp +2470 -0
  80. casadi/include/fatrop/blasfeo_wrapper/LinearAlgebraBlasfeo.hpp +4 -1
  81. casadi/include/ghc/filesystem.hpp +6083 -0
  82. casadi/include/ghc/fs_fwd.hpp +38 -0
  83. casadi/include/ghc/fs_impl.hpp +35 -0
  84. casadi/include/ghc/fs_std.hpp +60 -0
  85. casadi/include/ghc/fs_std_fwd.hpp +63 -0
  86. casadi/include/ghc/fs_std_impl.hpp +46 -0
  87. casadi/include/highs/HConfig.h +6 -4
  88. casadi/include/highs/Highs.h +260 -86
  89. casadi/include/highs/filereaderlp/reader.hpp +10 -10
  90. casadi/include/highs/interfaces/highs_c_api.h +195 -22
  91. casadi/include/highs/io/Filereader.h +4 -6
  92. casadi/include/highs/io/FilereaderEms.h +0 -3
  93. casadi/include/highs/io/FilereaderLp.h +0 -3
  94. casadi/include/highs/io/FilereaderMps.h +0 -3
  95. casadi/include/highs/io/HMPSIO.h +1 -4
  96. casadi/include/highs/io/HMpsFF.h +8 -5
  97. casadi/include/highs/io/HighsIO.h +10 -5
  98. casadi/include/highs/io/LoadOptions.h +0 -3
  99. casadi/include/highs/ipm/IpxSolution.h +0 -3
  100. casadi/include/highs/ipm/IpxWrapper.h +4 -7
  101. casadi/include/highs/ipm/ipx/control.h +1 -0
  102. casadi/include/highs/ipm/ipx/ipx_parameters.h +1 -0
  103. casadi/include/highs/ipm/ipx/lp_solver.h +3 -2
  104. casadi/include/highs/ipm/ipx/model.h +7 -3
  105. casadi/include/highs/lp_data/HConst.h +21 -6
  106. casadi/include/highs/lp_data/HStruct.h +40 -4
  107. casadi/include/highs/lp_data/HighsAnalysis.h +0 -3
  108. casadi/include/highs/lp_data/HighsCallback.h +10 -3
  109. casadi/include/highs/lp_data/HighsCallbackStruct.h +3 -3
  110. casadi/include/highs/lp_data/HighsDebug.h +0 -3
  111. casadi/include/highs/lp_data/HighsIis.h +62 -0
  112. casadi/include/highs/lp_data/HighsInfo.h +50 -43
  113. casadi/include/highs/lp_data/HighsInfoDebug.h +0 -3
  114. casadi/include/highs/lp_data/HighsLp.h +2 -3
  115. casadi/include/highs/lp_data/HighsLpSolverObject.h +0 -3
  116. casadi/include/highs/lp_data/HighsLpUtils.h +38 -6
  117. casadi/include/highs/lp_data/HighsModelUtils.h +21 -18
  118. casadi/include/highs/lp_data/HighsOptions.h +134 -22
  119. casadi/include/highs/lp_data/HighsRanging.h +0 -3
  120. casadi/include/highs/lp_data/HighsSolution.h +10 -3
  121. casadi/include/highs/lp_data/HighsSolutionDebug.h +0 -3
  122. casadi/include/highs/lp_data/HighsSolve.h +0 -3
  123. casadi/include/highs/lp_data/HighsStatus.h +0 -3
  124. casadi/include/highs/mip/HighsCliqueTable.h +3 -3
  125. casadi/include/highs/mip/HighsConflictPool.h +0 -3
  126. casadi/include/highs/mip/HighsCutGeneration.h +13 -3
  127. casadi/include/highs/mip/HighsCutPool.h +0 -3
  128. casadi/include/highs/mip/HighsDebugSol.h +0 -3
  129. casadi/include/highs/mip/HighsDomain.h +16 -4
  130. casadi/include/highs/mip/HighsDomainChange.h +0 -3
  131. casadi/include/highs/mip/HighsDynamicRowMatrix.h +0 -3
  132. casadi/include/highs/mip/HighsGFkSolve.h +3 -6
  133. casadi/include/highs/mip/HighsImplications.h +29 -5
  134. casadi/include/highs/mip/HighsLpAggregator.h +0 -3
  135. casadi/include/highs/mip/HighsLpRelaxation.h +0 -3
  136. casadi/include/highs/mip/HighsMipAnalysis.h +52 -0
  137. casadi/include/highs/mip/HighsMipSolver.h +11 -4
  138. casadi/include/highs/mip/HighsMipSolverData.h +67 -6
  139. casadi/include/highs/mip/HighsModkSeparator.h +1 -4
  140. casadi/include/highs/mip/HighsNodeQueue.h +0 -3
  141. casadi/include/highs/mip/HighsObjectiveFunction.h +0 -3
  142. casadi/include/highs/mip/HighsPathSeparator.h +1 -4
  143. casadi/include/highs/mip/HighsPrimalHeuristics.h +7 -5
  144. casadi/include/highs/mip/HighsPseudocost.h +0 -3
  145. casadi/include/highs/mip/HighsRedcostFixing.h +0 -3
  146. casadi/include/highs/mip/HighsSearch.h +0 -3
  147. casadi/include/highs/mip/HighsSeparation.h +0 -3
  148. casadi/include/highs/mip/HighsSeparator.h +1 -5
  149. casadi/include/highs/mip/HighsTableauSeparator.h +1 -4
  150. casadi/include/highs/mip/HighsTransformedLp.h +0 -3
  151. casadi/include/highs/mip/MipTimer.h +471 -0
  152. casadi/include/highs/parallel/HighsBinarySemaphore.h +1 -1
  153. casadi/include/highs/parallel/HighsCacheAlign.h +1 -1
  154. casadi/include/highs/parallel/HighsCombinable.h +1 -1
  155. casadi/include/highs/parallel/HighsMutex.h +1 -1
  156. casadi/include/highs/parallel/HighsRaceTimer.h +1 -1
  157. casadi/include/highs/parallel/HighsSchedulerConstants.h +1 -1
  158. casadi/include/highs/parallel/HighsSplitDeque.h +1 -1
  159. casadi/include/highs/parallel/HighsTaskExecutor.h +68 -55
  160. casadi/include/highs/pdlp/CupdlpWrapper.h +18 -7
  161. casadi/include/highs/pdlp/cupdlp/cupdlp_cs.h +2 -3
  162. casadi/include/highs/pdlp/cupdlp/cupdlp_defs.h +16 -6
  163. casadi/include/highs/pdlp/cupdlp/cupdlp_linalg.h +10 -4
  164. casadi/include/highs/pdlp/cupdlp/cupdlp_proj.h +3 -3
  165. casadi/include/highs/pdlp/cupdlp/cupdlp_restart.h +6 -6
  166. casadi/include/highs/pdlp/cupdlp/cupdlp_scaling.h +26 -0
  167. casadi/include/highs/pdlp/cupdlp/cupdlp_solver.h +11 -11
  168. casadi/include/highs/pdlp/cupdlp/cupdlp_step.h +8 -4
  169. casadi/include/highs/pdlp/cupdlp/cupdlp_utils.c +253 -172
  170. casadi/include/highs/presolve/HPresolve.h +50 -10
  171. casadi/include/highs/presolve/HPresolveAnalysis.h +0 -3
  172. casadi/include/highs/presolve/HighsPostsolveStack.h +39 -6
  173. casadi/include/highs/presolve/HighsSymmetry.h +0 -3
  174. casadi/include/highs/presolve/ICrash.h +0 -3
  175. casadi/include/highs/presolve/ICrashUtil.h +1 -4
  176. casadi/include/highs/presolve/ICrashX.h +0 -3
  177. casadi/include/highs/presolve/PresolveComponent.h +0 -3
  178. casadi/include/highs/qpsolver/a_asm.hpp +20 -17
  179. casadi/include/highs/qpsolver/a_quass.hpp +5 -9
  180. casadi/include/highs/qpsolver/basis.hpp +12 -10
  181. casadi/include/highs/qpsolver/crashsolution.hpp +4 -3
  182. casadi/include/highs/qpsolver/dantzigpricing.hpp +3 -2
  183. casadi/include/highs/qpsolver/devexpricing.hpp +3 -1
  184. casadi/include/highs/qpsolver/factor.hpp +6 -5
  185. casadi/include/highs/qpsolver/feasibility_bounded.hpp +31 -29
  186. casadi/include/highs/qpsolver/feasibility_highs.hpp +94 -70
  187. casadi/include/highs/qpsolver/gradient.hpp +1 -1
  188. casadi/include/highs/qpsolver/instance.hpp +1 -1
  189. casadi/include/highs/qpsolver/pricing.hpp +2 -2
  190. casadi/include/highs/qpsolver/qpconst.hpp +2 -2
  191. casadi/include/highs/qpsolver/quass.hpp +2 -2
  192. casadi/include/highs/qpsolver/runtime.hpp +2 -2
  193. casadi/include/highs/qpsolver/settings.hpp +20 -8
  194. casadi/include/highs/qpsolver/steepestedgepricing.hpp +38 -39
  195. casadi/include/highs/simplex/HApp.h +88 -34
  196. casadi/include/highs/simplex/HEkk.h +24 -11
  197. casadi/include/highs/simplex/HEkkDual.h +2 -4
  198. casadi/include/highs/simplex/HEkkDualRHS.h +0 -3
  199. casadi/include/highs/simplex/HEkkDualRow.h +0 -3
  200. casadi/include/highs/simplex/HEkkPrimal.h +1 -5
  201. casadi/include/highs/simplex/HSimplex.h +0 -3
  202. casadi/include/highs/simplex/HSimplexDebug.h +0 -3
  203. casadi/include/highs/simplex/HSimplexNla.h +0 -26
  204. casadi/include/highs/simplex/HSimplexReport.h +0 -3
  205. casadi/include/highs/simplex/HighsSimplexAnalysis.h +5 -8
  206. casadi/include/highs/simplex/SimplexConst.h +10 -11
  207. casadi/include/highs/simplex/SimplexStruct.h +9 -12
  208. casadi/include/highs/simplex/SimplexTimer.h +83 -101
  209. casadi/include/highs/test/DevKkt.h +0 -3
  210. casadi/include/highs/test/KktCh2.h +0 -3
  211. casadi/include/highs/util/FactorTimer.h +39 -64
  212. casadi/include/highs/util/HFactor.h +4 -4
  213. casadi/include/highs/util/HFactorConst.h +0 -3
  214. casadi/include/highs/util/HFactorDebug.h +0 -3
  215. casadi/include/highs/util/HSet.h +0 -3
  216. casadi/include/highs/util/HVector.h +0 -3
  217. casadi/include/highs/util/HVectorBase.h +1 -4
  218. casadi/include/highs/util/HighsCDouble.h +12 -3
  219. casadi/include/highs/util/HighsComponent.h +0 -3
  220. casadi/include/highs/util/HighsDataStack.h +0 -3
  221. casadi/include/highs/util/HighsDisjointSets.h +0 -3
  222. casadi/include/highs/util/HighsHash.h +9 -12
  223. casadi/include/highs/util/HighsHashTree.h +15 -11
  224. casadi/include/highs/util/HighsInt.h +0 -3
  225. casadi/include/highs/util/HighsIntegers.h +0 -3
  226. casadi/include/highs/util/HighsLinearSumBounds.h +0 -3
  227. casadi/include/highs/util/HighsMatrixPic.h +0 -3
  228. casadi/include/highs/util/HighsMatrixSlice.h +3 -6
  229. casadi/include/highs/util/HighsMatrixUtils.h +0 -3
  230. casadi/include/highs/util/HighsMemoryAllocation.h +11 -3
  231. casadi/include/highs/util/HighsRandom.h +3 -6
  232. casadi/include/highs/util/HighsRbTree.h +0 -3
  233. casadi/include/highs/util/HighsSort.h +0 -3
  234. casadi/include/highs/util/HighsSparseMatrix.h +6 -3
  235. casadi/include/highs/util/HighsSparseVectorSum.h +0 -3
  236. casadi/include/highs/util/HighsSplay.h +0 -3
  237. casadi/include/highs/util/HighsTimer.h +94 -56
  238. casadi/include/highs/util/HighsUtils.h +10 -3
  239. casadi/include/highs/util/stringutil.h +14 -12
  240. casadi/include/licenses/LICENSE.bzip2.txt +42 -0
  241. casadi/include/licenses/ghc-external/LICENSE +19 -0
  242. casadi/include/licenses/libz-external/LICENSE +22 -0
  243. casadi/include/licenses/libz-external/contrib/dotzlib/LICENSE_1_0.txt +23 -0
  244. casadi/include/licenses/libzip-external/LICENSE +31 -0
  245. casadi/include/zconf.h +545 -0
  246. casadi/include/zip.h +528 -0
  247. casadi/include/zipconf.h +48 -0
  248. casadi/include/zlib.h +1938 -0
  249. casadi/libCbc.3.10.11.dylib +0 -0
  250. casadi/libCbc.3.dylib +0 -0
  251. casadi/libCbc.dylib +0 -0
  252. casadi/libCbc.la +1 -1
  253. casadi/libCbcSolver.3.10.11.dylib +0 -0
  254. casadi/libCbcSolver.3.dylib +0 -0
  255. casadi/libCbcSolver.dylib +0 -0
  256. casadi/libCbcSolver.la +1 -1
  257. casadi/libCgl.1.10.8.dylib +0 -0
  258. casadi/libCgl.1.dylib +0 -0
  259. casadi/libCgl.dylib +0 -0
  260. casadi/libCgl.la +1 -1
  261. casadi/libClp.1.14.9.dylib +0 -0
  262. casadi/libClp.1.dylib +0 -0
  263. casadi/libClp.dylib +0 -0
  264. casadi/libClp.la +1 -1
  265. casadi/libClpSolver.1.14.9.dylib +0 -0
  266. casadi/libClpSolver.1.dylib +0 -0
  267. casadi/libClpSolver.dylib +0 -0
  268. casadi/libClpSolver.la +1 -1
  269. casadi/libCoinUtils.3.11.10.dylib +0 -0
  270. casadi/libCoinUtils.3.dylib +0 -0
  271. casadi/libCoinUtils.dylib +0 -0
  272. casadi/libOsi.1.13.9.dylib +0 -0
  273. casadi/libOsi.1.dylib +0 -0
  274. casadi/libOsi.dylib +0 -0
  275. casadi/libOsiCbc.3.10.11.dylib +0 -0
  276. casadi/libOsiCbc.3.dylib +0 -0
  277. casadi/libOsiCbc.dylib +0 -0
  278. casadi/libOsiCbc.la +1 -1
  279. casadi/libOsiClp.1.14.9.dylib +0 -0
  280. casadi/libOsiClp.1.dylib +0 -0
  281. casadi/libOsiClp.dylib +0 -0
  282. casadi/libOsiClp.la +1 -1
  283. casadi/libOsiCommonTests.1.13.9.dylib +0 -0
  284. casadi/libOsiCommonTests.1.dylib +0 -0
  285. casadi/libOsiCommonTests.dylib +0 -0
  286. casadi/libblasfeo.dylib +0 -0
  287. casadi/libbonmin.4.8.9.dylib +0 -0
  288. casadi/libbonmin.4.dylib +0 -0
  289. casadi/libbonmin.dylib +0 -0
  290. casadi/libbonmin.la +1 -1
  291. casadi/libbz2.1.0.8.dylib +0 -0
  292. casadi/libc++.1.0.dylib +0 -0
  293. casadi/libcasadi.3.7.dylib +0 -0
  294. casadi/libcasadi.dylib +0 -0
  295. casadi/libcasadi_archiver_libzip.3.7.dylib +0 -0
  296. casadi/libcasadi_archiver_libzip.dylib +0 -0
  297. casadi/libcasadi_conic_cbc.3.7.dylib +0 -0
  298. casadi/libcasadi_conic_cbc.dylib +0 -0
  299. casadi/libcasadi_conic_clp.3.7.dylib +0 -0
  300. casadi/libcasadi_conic_clp.dylib +0 -0
  301. casadi/libcasadi_conic_cplex.3.7.dylib +0 -0
  302. casadi/libcasadi_conic_cplex.dylib +0 -0
  303. casadi/libcasadi_conic_daqp.3.7.dylib +0 -0
  304. casadi/libcasadi_conic_daqp.dylib +0 -0
  305. casadi/libcasadi_conic_fatrop.3.7.dylib +0 -0
  306. casadi/libcasadi_conic_fatrop.dylib +0 -0
  307. casadi/libcasadi_conic_gurobi.3.7.dylib +0 -0
  308. casadi/libcasadi_conic_gurobi.dylib +0 -0
  309. casadi/libcasadi_conic_highs.3.7.dylib +0 -0
  310. casadi/libcasadi_conic_highs.dylib +0 -0
  311. casadi/libcasadi_conic_ipqp.3.7.dylib +0 -0
  312. casadi/libcasadi_conic_ipqp.dylib +0 -0
  313. casadi/libcasadi_conic_nlpsol.3.7.dylib +0 -0
  314. casadi/libcasadi_conic_nlpsol.dylib +0 -0
  315. casadi/libcasadi_conic_osqp.3.7.dylib +0 -0
  316. casadi/libcasadi_conic_osqp.dylib +0 -0
  317. casadi/libcasadi_conic_proxqp.3.7.dylib +0 -0
  318. casadi/libcasadi_conic_proxqp.dylib +0 -0
  319. casadi/libcasadi_conic_qpoases.3.7.dylib +0 -0
  320. casadi/libcasadi_conic_qpoases.dylib +0 -0
  321. casadi/libcasadi_conic_qrqp.3.7.dylib +0 -0
  322. casadi/libcasadi_conic_qrqp.dylib +0 -0
  323. casadi/libcasadi_conic_superscs.3.7.dylib +0 -0
  324. casadi/libcasadi_conic_superscs.dylib +0 -0
  325. casadi/libcasadi_filesystem_ghc.3.7.dylib +0 -0
  326. casadi/libcasadi_filesystem_ghc.dylib +0 -0
  327. casadi/libcasadi_importer_shell.3.7.dylib +0 -0
  328. casadi/libcasadi_importer_shell.dylib +0 -0
  329. casadi/libcasadi_integrator_collocation.3.7.dylib +0 -0
  330. casadi/libcasadi_integrator_collocation.dylib +0 -0
  331. casadi/libcasadi_integrator_cvodes.3.7.dylib +0 -0
  332. casadi/libcasadi_integrator_cvodes.dylib +0 -0
  333. casadi/libcasadi_integrator_idas.3.7.dylib +0 -0
  334. casadi/libcasadi_integrator_idas.dylib +0 -0
  335. casadi/libcasadi_integrator_rk.3.7.dylib +0 -0
  336. casadi/libcasadi_integrator_rk.dylib +0 -0
  337. casadi/libcasadi_interpolant_bspline.3.7.dylib +0 -0
  338. casadi/libcasadi_interpolant_bspline.dylib +0 -0
  339. casadi/libcasadi_interpolant_linear.3.7.dylib +0 -0
  340. casadi/libcasadi_interpolant_linear.dylib +0 -0
  341. casadi/libcasadi_linsol_csparse.3.7.dylib +0 -0
  342. casadi/libcasadi_linsol_csparse.dylib +0 -0
  343. casadi/libcasadi_linsol_csparsecholesky.3.7.dylib +0 -0
  344. casadi/libcasadi_linsol_csparsecholesky.dylib +0 -0
  345. casadi/libcasadi_linsol_lapacklu.3.7.dylib +0 -0
  346. casadi/libcasadi_linsol_lapacklu.dylib +0 -0
  347. casadi/libcasadi_linsol_lapackqr.3.7.dylib +0 -0
  348. casadi/libcasadi_linsol_lapackqr.dylib +0 -0
  349. casadi/libcasadi_linsol_ldl.3.7.dylib +0 -0
  350. casadi/libcasadi_linsol_ldl.dylib +0 -0
  351. casadi/libcasadi_linsol_lsqr.3.7.dylib +0 -0
  352. casadi/libcasadi_linsol_lsqr.dylib +0 -0
  353. casadi/libcasadi_linsol_ma27.3.7.dylib +0 -0
  354. casadi/libcasadi_linsol_ma27.dylib +0 -0
  355. casadi/libcasadi_linsol_mumps.3.7.dylib +0 -0
  356. casadi/libcasadi_linsol_mumps.dylib +0 -0
  357. casadi/libcasadi_linsol_qr.3.7.dylib +0 -0
  358. casadi/libcasadi_linsol_qr.dylib +0 -0
  359. casadi/libcasadi_linsol_symbolicqr.3.7.dylib +0 -0
  360. casadi/libcasadi_linsol_symbolicqr.dylib +0 -0
  361. casadi/libcasadi_linsol_tridiag.3.7.dylib +0 -0
  362. casadi/libcasadi_linsol_tridiag.dylib +0 -0
  363. casadi/libcasadi_nlpsol_ampl.3.7.dylib +0 -0
  364. casadi/libcasadi_nlpsol_ampl.dylib +0 -0
  365. casadi/libcasadi_nlpsol_blocksqp.3.7.dylib +0 -0
  366. casadi/libcasadi_nlpsol_blocksqp.dylib +0 -0
  367. casadi/libcasadi_nlpsol_bonmin.3.7.dylib +0 -0
  368. casadi/libcasadi_nlpsol_bonmin.dylib +0 -0
  369. casadi/libcasadi_nlpsol_fatrop.3.7.dylib +0 -0
  370. casadi/libcasadi_nlpsol_fatrop.dylib +0 -0
  371. casadi/libcasadi_nlpsol_feasiblesqpmethod.3.7.dylib +0 -0
  372. casadi/libcasadi_nlpsol_feasiblesqpmethod.dylib +0 -0
  373. casadi/libcasadi_nlpsol_ipopt.3.7.dylib +0 -0
  374. casadi/libcasadi_nlpsol_ipopt.dylib +0 -0
  375. casadi/libcasadi_nlpsol_knitro.3.7.dylib +0 -0
  376. casadi/libcasadi_nlpsol_knitro.dylib +0 -0
  377. casadi/libcasadi_nlpsol_madnlp.3.7.dylib +0 -0
  378. casadi/libcasadi_nlpsol_madnlp.dylib +0 -0
  379. casadi/libcasadi_nlpsol_qrsqp.3.7.dylib +0 -0
  380. casadi/libcasadi_nlpsol_qrsqp.dylib +0 -0
  381. casadi/libcasadi_nlpsol_scpgen.3.7.dylib +0 -0
  382. casadi/libcasadi_nlpsol_scpgen.dylib +0 -0
  383. casadi/libcasadi_nlpsol_sleqp.3.7.dylib +0 -0
  384. casadi/libcasadi_nlpsol_sleqp.dylib +0 -0
  385. casadi/libcasadi_nlpsol_snopt.3.7.dylib +0 -0
  386. casadi/libcasadi_nlpsol_snopt.dylib +0 -0
  387. casadi/libcasadi_nlpsol_sqpmethod.3.7.dylib +0 -0
  388. casadi/libcasadi_nlpsol_sqpmethod.dylib +0 -0
  389. casadi/libcasadi_rootfinder_fast_newton.3.7.dylib +0 -0
  390. casadi/libcasadi_rootfinder_fast_newton.dylib +0 -0
  391. casadi/libcasadi_rootfinder_kinsol.3.7.dylib +0 -0
  392. casadi/libcasadi_rootfinder_kinsol.dylib +0 -0
  393. casadi/libcasadi_rootfinder_newton.3.7.dylib +0 -0
  394. casadi/libcasadi_rootfinder_newton.dylib +0 -0
  395. casadi/libcasadi_rootfinder_nlpsol.3.7.dylib +0 -0
  396. casadi/libcasadi_rootfinder_nlpsol.dylib +0 -0
  397. casadi/libcasadi_sundials_common.3.7.dylib +0 -0
  398. casadi/libcasadi_sundials_common.dylib +0 -0
  399. casadi/libcasadi_xmlfile_tinyxml.3.7.dylib +0 -0
  400. casadi/libcasadi_xmlfile_tinyxml.dylib +0 -0
  401. casadi/libcoinmetis.2.dylib +0 -0
  402. casadi/libcoinmetis.dylib +0 -0
  403. casadi/libcoinmumps.3.dylib +0 -0
  404. casadi/libcoinmumps.dylib +0 -0
  405. casadi/libcoinmumps.la +1 -1
  406. casadi/libcplex_adaptor.dylib +0 -0
  407. casadi/libdaqp.dylib +0 -0
  408. casadi/libdaqpstat.a +0 -0
  409. casadi/libfatrop.dylib +0 -0
  410. casadi/libgcc_s.1.1.dylib +0 -0
  411. casadi/libgfortran.5.dylib +0 -0
  412. casadi/libgurobi_adaptor.dylib +0 -0
  413. casadi/libhighs.1.10.dylib +0 -0
  414. casadi/libhighs.1.dylib +0 -0
  415. casadi/libhighs.dylib +0 -0
  416. casadi/libindirect.a +0 -0
  417. casadi/libipopt.3.dylib +0 -0
  418. casadi/libipopt.dylib +0 -0
  419. casadi/libipopt.la +1 -1
  420. casadi/liblinsys.a +0 -0
  421. casadi/libmatlab_ipc.dylib +0 -0
  422. casadi/libosqp.a +0 -0
  423. casadi/libosqp.dylib +0 -0
  424. casadi/libqdldl.a +0 -0
  425. casadi/libqdldl.dylib +0 -0
  426. casadi/libquadmath.0.dylib +0 -0
  427. casadi/libsipopt.3.dylib +0 -0
  428. casadi/libsipopt.dylib +0 -0
  429. casadi/libsipopt.la +1 -1
  430. casadi/libsleqp.1.0.1.dylib +0 -0
  431. casadi/libsleqp.dylib +0 -0
  432. casadi/libsuperscs.a +0 -0
  433. casadi/libtrlib.0.4.dylib +0 -0
  434. casadi/libtrlib.dylib +0 -0
  435. casadi/libz.1.2.13.dylib +0 -0
  436. casadi/libz.1.3.1.dylib +0 -0
  437. casadi/libz.1.dylib +0 -0
  438. casadi/libz.a +0 -0
  439. casadi/libz.dylib +0 -0
  440. casadi/libzip.a +0 -0
  441. casadi/pkgconfig/casadi.pc +1 -1
  442. casadi/pkgconfig/coinmumps.pc +1 -1
  443. casadi/pkgconfig/highs.pc +1 -1
  444. casadi/pkgconfig/libzip.pc +14 -0
  445. casadi/tools/__init__.py +3 -1
  446. casadi/tools/graph/graph.py +1 -1
  447. casadi/tools/structure3.py +7 -7
  448. {casadi-3.6.7.dist-info → casadi-3.7.1.dist-info}/METADATA +1 -1
  449. {casadi-3.6.7.dist-info → casadi-3.7.1.dist-info}/RECORD +450 -405
  450. casadi/include/highs/lp_data/HighsRuntimeOptions.h +0 -276
  451. casadi/include/highs/pdlp/cupdlp/cupdlp_scaling_cuda.h +0 -28
  452. casadi/include/tinyxml2.h +0 -2380
  453. casadi/lib/cmake/tinyxml2/tinyxml2-config.cmake +0 -57
  454. casadi/lib/cmake/tinyxml2/tinyxml2-static-targets-release.cmake +0 -19
  455. casadi/lib/libtinyxml2.a +0 -0
  456. casadi/lib/pkgconfig/tinyxml2.pc +0 -10
  457. casadi/libhighs.1.7.dylib +0 -0
  458. casadi/tools/structure.py +0 -1446
  459. {casadi-3.6.7.dist-info → casadi-3.7.1.dist-info}/WHEEL +0 -0
casadi/cbc CHANGED
Binary file
casadi/clp CHANGED
Binary file
@@ -1,4 +1,4 @@
1
- set(PACKAGE_VERSION "3.6.7")
1
+ set(PACKAGE_VERSION "3.7.1")
2
2
 
3
3
  # Check whether the requested PACKAGE_FIND_VERSION is compatible
4
4
  if("${PACKAGE_VERSION}" VERSION_LESS "${PACKAGE_FIND_VERSION}")
@@ -4,5 +4,5 @@ get_filename_component(CASADI_CMAKE_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH)
4
4
  include("${CASADI_CMAKE_DIR}/casadi-targets.cmake")
5
5
 
6
6
  if(OFF AND "${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
7
- target_compile_definitions(casadi INTERFACE _GLIBCXX_USE_CXX11_ABI=0)
7
+ target_compile_definitions(casadi::casadi INTERFACE _GLIBCXX_USE_CXX11_ABI=0)
8
8
  endif()
@@ -5,15 +5,15 @@
5
5
  # Commands may need to know the format version.
6
6
  set(CMAKE_IMPORT_FILE_VERSION 1)
7
7
 
8
- # Import target "casadi" for configuration "Release"
9
- set_property(TARGET casadi APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
10
- set_target_properties(casadi PROPERTIES
8
+ # Import target "casadi::casadi" for configuration "Release"
9
+ set_property(TARGET casadi::casadi APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
10
+ set_target_properties(casadi::casadi PROPERTIES
11
11
  IMPORTED_LOCATION_RELEASE "${_IMPORT_PREFIX}/casadi/libcasadi.3.7.dylib"
12
12
  IMPORTED_SONAME_RELEASE "@rpath/libcasadi.3.7.dylib"
13
13
  )
14
14
 
15
- list(APPEND _cmake_import_check_targets casadi )
16
- list(APPEND _cmake_import_check_files_for_casadi "${_IMPORT_PREFIX}/casadi/libcasadi.3.7.dylib" )
15
+ list(APPEND _cmake_import_check_targets casadi::casadi )
16
+ list(APPEND _cmake_import_check_files_for_casadi::casadi "${_IMPORT_PREFIX}/casadi/libcasadi.3.7.dylib" )
17
17
 
18
18
  # Commands beyond this point should not need to know the version.
19
19
  set(CMAKE_IMPORT_FILE_VERSION)
@@ -1,13 +1,13 @@
1
1
  # Generated by CMake
2
2
 
3
3
  if("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}" LESS 2.8)
4
- message(FATAL_ERROR "CMake >= 2.8.0 required")
4
+ message(FATAL_ERROR "CMake >= 2.8.3 required")
5
5
  endif()
6
6
  if(CMAKE_VERSION VERSION_LESS "2.8.3")
7
7
  message(FATAL_ERROR "CMake >= 2.8.3 required")
8
8
  endif()
9
9
  cmake_policy(PUSH)
10
- cmake_policy(VERSION 2.8.3...3.28)
10
+ cmake_policy(VERSION 2.8.3...3.29)
11
11
  #----------------------------------------------------------------
12
12
  # Generated CMake target import file.
13
13
  #----------------------------------------------------------------
@@ -19,7 +19,7 @@ set(CMAKE_IMPORT_FILE_VERSION 1)
19
19
  set(_cmake_targets_defined "")
20
20
  set(_cmake_targets_not_defined "")
21
21
  set(_cmake_expected_targets "")
22
- foreach(_cmake_expected_target IN ITEMS casadi)
22
+ foreach(_cmake_expected_target IN ITEMS casadi::casadi)
23
23
  list(APPEND _cmake_expected_targets "${_cmake_expected_target}")
24
24
  if(TARGET "${_cmake_expected_target}")
25
25
  list(APPEND _cmake_targets_defined "${_cmake_expected_target}")
@@ -54,11 +54,11 @@ if(_IMPORT_PREFIX STREQUAL "/")
54
54
  set(_IMPORT_PREFIX "")
55
55
  endif()
56
56
 
57
- # Create imported target casadi
58
- add_library(casadi SHARED IMPORTED)
57
+ # Create imported target casadi::casadi
58
+ add_library(casadi::casadi SHARED IMPORTED)
59
59
 
60
- set_target_properties(casadi PROPERTIES
61
- INTERFACE_COMPILE_DEFINITIONS "CASADI_SNPRINTF=snprintf"
60
+ set_target_properties(casadi::casadi PROPERTIES
61
+ INTERFACE_COMPILE_DEFINITIONS "CASADI_SNPRINTF=snprintf;CASADI_WITH_THREADSAFE_SYMBOLICS;CASADI_WITH_THREAD"
62
62
  INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/casadi/include"
63
63
  )
64
64
 
@@ -5,33 +5,45 @@
5
5
  # The created file sets PACKAGE_VERSION_EXACT if the current version string and
6
6
  # the requested version string are exactly the same and it sets
7
7
  # PACKAGE_VERSION_COMPATIBLE if the current version is >= requested version,
8
- # but only if the requested major version is the same as the current one.
8
+ # but only if the requested major and minor versions are the same as the current
9
+ # one.
9
10
  # The variable CVF_VERSION must be set before calling configure_file().
10
11
 
11
12
 
12
- set(PACKAGE_VERSION "9.0.0")
13
+ set(PACKAGE_VERSION "1.5.14")
13
14
 
14
15
  if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION)
15
16
  set(PACKAGE_VERSION_COMPATIBLE FALSE)
16
17
  else()
17
18
 
18
- if("9.0.0" MATCHES "^([0-9]+)\\.")
19
+ if("1.5.14" MATCHES "^([0-9]+)\\.([0-9]+)")
19
20
  set(CVF_VERSION_MAJOR "${CMAKE_MATCH_1}")
21
+ set(CVF_VERSION_MINOR "${CMAKE_MATCH_2}")
22
+
20
23
  if(NOT CVF_VERSION_MAJOR VERSION_EQUAL 0)
21
24
  string(REGEX REPLACE "^0+" "" CVF_VERSION_MAJOR "${CVF_VERSION_MAJOR}")
22
25
  endif()
26
+ if(NOT CVF_VERSION_MINOR VERSION_EQUAL 0)
27
+ string(REGEX REPLACE "^0+" "" CVF_VERSION_MINOR "${CVF_VERSION_MINOR}")
28
+ endif()
23
29
  else()
24
- set(CVF_VERSION_MAJOR "9.0.0")
30
+ set(CVF_VERSION_MAJOR "1.5.14")
31
+ set(CVF_VERSION_MINOR "")
25
32
  endif()
26
33
 
27
34
  if(PACKAGE_FIND_VERSION_RANGE)
28
- # both endpoints of the range must have the expected major version
29
- math (EXPR CVF_VERSION_MAJOR_NEXT "${CVF_VERSION_MAJOR} + 1")
30
- if (NOT PACKAGE_FIND_VERSION_MIN_MAJOR STREQUAL CVF_VERSION_MAJOR
31
- OR ((PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "INCLUDE" AND NOT PACKAGE_FIND_VERSION_MAX_MAJOR STREQUAL CVF_VERSION_MAJOR)
32
- OR (PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "EXCLUDE" AND NOT PACKAGE_FIND_VERSION_MAX VERSION_LESS_EQUAL CVF_VERSION_MAJOR_NEXT)))
35
+ # both endpoints of the range must have the expected major and minor versions
36
+ math (EXPR CVF_VERSION_MINOR_NEXT "${CVF_VERSION_MINOR} + 1")
37
+ if (NOT (PACKAGE_FIND_VERSION_MIN_MAJOR STREQUAL CVF_VERSION_MAJOR
38
+ AND PACKAGE_FIND_VERSION_MIN_MINOR STREQUAL CVF_VERSION_MINOR)
39
+ OR ((PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "INCLUDE"
40
+ AND NOT (PACKAGE_FIND_VERSION_MAX_MAJOR STREQUAL CVF_VERSION_MAJOR
41
+ AND PACKAGE_FIND_VERSION_MAX_MINOR STREQUAL CVF_VERSION_MINOR))
42
+ OR (PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "EXCLUDE"
43
+ AND NOT PACKAGE_FIND_VERSION_MAX VERSION_LESS_EQUAL ${CVF_VERSION_MAJOR}.${CVF_VERSION_MINOR_NEXT})))
33
44
  set(PACKAGE_VERSION_COMPATIBLE FALSE)
34
45
  elseif(PACKAGE_FIND_VERSION_MIN_MAJOR STREQUAL CVF_VERSION_MAJOR
46
+ AND PACKAGE_FIND_VERSION_MIN_MINOR STREQUAL CVF_VERSION_MINOR
35
47
  AND ((PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "INCLUDE" AND PACKAGE_VERSION VERSION_LESS_EQUAL PACKAGE_FIND_VERSION_MAX)
36
48
  OR (PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "EXCLUDE" AND PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION_MAX)))
37
49
  set(PACKAGE_VERSION_COMPATIBLE TRUE)
@@ -39,7 +51,15 @@ else()
39
51
  set(PACKAGE_VERSION_COMPATIBLE FALSE)
40
52
  endif()
41
53
  else()
42
- if(PACKAGE_FIND_VERSION_MAJOR STREQUAL CVF_VERSION_MAJOR)
54
+ if(NOT PACKAGE_FIND_VERSION_MAJOR VERSION_EQUAL 0)
55
+ string(REGEX REPLACE "^0+" "" PACKAGE_FIND_VERSION_MAJOR "${PACKAGE_FIND_VERSION_MAJOR}")
56
+ endif()
57
+ if(NOT PACKAGE_FIND_VERSION_MINOR VERSION_EQUAL 0)
58
+ string(REGEX REPLACE "^0+" "" PACKAGE_FIND_VERSION_MINOR "${PACKAGE_FIND_VERSION_MINOR}")
59
+ endif()
60
+
61
+ if((PACKAGE_FIND_VERSION_MAJOR STREQUAL CVF_VERSION_MAJOR) AND
62
+ (PACKAGE_FIND_VERSION_MINOR STREQUAL CVF_VERSION_MINOR))
43
63
  set(PACKAGE_VERSION_COMPATIBLE TRUE)
44
64
  else()
45
65
  set(PACKAGE_VERSION_COMPATIBLE FALSE)
@@ -0,0 +1,30 @@
1
+
2
+ ####### Expanded from @PACKAGE_INIT@ by configure_package_config_file() #######
3
+ ####### Any changes to this file will be overwritten by the next CMake run ####
4
+ ####### The input file was config.cmake.in ########
5
+
6
+ get_filename_component(PACKAGE_PREFIX_DIR "${CMAKE_CURRENT_LIST_DIR}/../../../" ABSOLUTE)
7
+
8
+ macro(set_and_check _var _file)
9
+ set(${_var} "${_file}")
10
+ if(NOT EXISTS "${_file}")
11
+ message(FATAL_ERROR "File or directory ${_file} referenced by variable ${_var} does not exist !")
12
+ endif()
13
+ endmacro()
14
+
15
+ macro(check_required_components _NAME)
16
+ foreach(comp ${${_NAME}_FIND_COMPONENTS})
17
+ if(NOT ${_NAME}_${comp}_FOUND)
18
+ if(${_NAME}_FIND_REQUIRED_${comp})
19
+ set(${_NAME}_FOUND FALSE)
20
+ endif()
21
+ endif()
22
+ endforeach()
23
+ endmacro()
24
+
25
+ ####################################################################################
26
+
27
+ # import targets
28
+ include("${CMAKE_CURRENT_LIST_DIR}/ghc_filesystem-targets.cmake")
29
+
30
+ check_required_components(ghcfilesystem)
@@ -1,13 +1,13 @@
1
1
  # Generated by CMake
2
2
 
3
3
  if("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}" LESS 2.8)
4
- message(FATAL_ERROR "CMake >= 2.8.0 required")
4
+ message(FATAL_ERROR "CMake >= 3.0.0 required")
5
5
  endif()
6
- if(CMAKE_VERSION VERSION_LESS "2.8.3")
7
- message(FATAL_ERROR "CMake >= 2.8.3 required")
6
+ if(CMAKE_VERSION VERSION_LESS "3.0.0")
7
+ message(FATAL_ERROR "CMake >= 3.0.0 required")
8
8
  endif()
9
9
  cmake_policy(PUSH)
10
- cmake_policy(VERSION 2.8.3...3.28)
10
+ cmake_policy(VERSION 3.0.0...3.29)
11
11
  #----------------------------------------------------------------
12
12
  # Generated CMake target import file.
13
13
  #----------------------------------------------------------------
@@ -19,7 +19,7 @@ set(CMAKE_IMPORT_FILE_VERSION 1)
19
19
  set(_cmake_targets_defined "")
20
20
  set(_cmake_targets_not_defined "")
21
21
  set(_cmake_expected_targets "")
22
- foreach(_cmake_expected_target IN ITEMS tinyxml2::tinyxml2)
22
+ foreach(_cmake_expected_target IN ITEMS ghcFilesystem::ghc_filesystem)
23
23
  list(APPEND _cmake_expected_targets "${_cmake_expected_target}")
24
24
  if(TARGET "${_cmake_expected_target}")
25
25
  list(APPEND _cmake_targets_defined "${_cmake_expected_target}")
@@ -55,16 +55,16 @@ if(_IMPORT_PREFIX STREQUAL "/")
55
55
  set(_IMPORT_PREFIX "")
56
56
  endif()
57
57
 
58
- # Create imported target tinyxml2::tinyxml2
59
- add_library(tinyxml2::tinyxml2 STATIC IMPORTED)
58
+ # Create imported target ghcFilesystem::ghc_filesystem
59
+ add_library(ghcFilesystem::ghc_filesystem INTERFACE IMPORTED)
60
60
 
61
- set_target_properties(tinyxml2::tinyxml2 PROPERTIES
62
- INTERFACE_COMPILE_DEFINITIONS "\$<\$<CONFIG:Debug>:TINYXML2_DEBUG>;\$<\$<BOOL:>:TINYXML2_IMPORT>"
61
+ set_target_properties(ghcFilesystem::ghc_filesystem PROPERTIES
62
+ INTERFACE_COMPILE_OPTIONS "\$<\$<C_COMPILER_ID:MSVC>:/utf-8>;\$<\$<CXX_COMPILER_ID:MSVC>:/utf-8>"
63
63
  INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include"
64
64
  )
65
65
 
66
66
  # Load information for each installed configuration.
67
- file(GLOB _cmake_config_files "${CMAKE_CURRENT_LIST_DIR}/tinyxml2-static-targets-*.cmake")
67
+ file(GLOB _cmake_config_files "${CMAKE_CURRENT_LIST_DIR}/ghc_filesystem-targets-*.cmake")
68
68
  foreach(_cmake_config_file IN LISTS _cmake_config_files)
69
69
  include("${_cmake_config_file}")
70
70
  endforeach()
@@ -8,12 +8,12 @@ set(CMAKE_IMPORT_FILE_VERSION 1)
8
8
  # Import target "highs::highs" for configuration "Release"
9
9
  set_property(TARGET highs::highs APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
10
10
  set_target_properties(highs::highs PROPERTIES
11
- IMPORTED_LOCATION_RELEASE "${_IMPORT_PREFIX}/lib/libhighs.1.7.dylib"
11
+ IMPORTED_LOCATION_RELEASE "${_IMPORT_PREFIX}/lib/libhighs.1.10.dylib"
12
12
  IMPORTED_SONAME_RELEASE "@rpath/libhighs.1.dylib"
13
13
  )
14
14
 
15
15
  list(APPEND _cmake_import_check_targets highs::highs )
16
- list(APPEND _cmake_import_check_files_for_highs::highs "${_IMPORT_PREFIX}/lib/libhighs.1.7.dylib" )
16
+ list(APPEND _cmake_import_check_files_for_highs::highs "${_IMPORT_PREFIX}/lib/libhighs.1.10.dylib" )
17
17
 
18
18
  # Import target "highs::highs-bin" for configuration "Release"
19
19
  set_property(TARGET highs::highs-bin APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
@@ -1,13 +1,13 @@
1
1
  # Generated by CMake
2
2
 
3
3
  if("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}" LESS 2.8)
4
- message(FATAL_ERROR "CMake >= 2.8.0 required")
4
+ message(FATAL_ERROR "CMake >= 2.8.12 required")
5
5
  endif()
6
6
  if(CMAKE_VERSION VERSION_LESS "2.8.12")
7
7
  message(FATAL_ERROR "CMake >= 2.8.12 required")
8
8
  endif()
9
9
  cmake_policy(PUSH)
10
- cmake_policy(VERSION 2.8.12...3.28)
10
+ cmake_policy(VERSION 2.8.12...3.29)
11
11
  #----------------------------------------------------------------
12
12
  # Generated CMake target import file.
13
13
  #----------------------------------------------------------------
@@ -61,7 +61,7 @@ add_library(highs::highs SHARED IMPORTED)
61
61
  set_target_properties(highs::highs PROPERTIES
62
62
  COMPATIBLE_INTERFACE_STRING "HIGHS_MAJOR_VERSION"
63
63
  INTERFACE_HIGHS_MAJOR_VERSION "1"
64
- INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include;${_IMPORT_PREFIX}/include/highs"
64
+ INTERFACE_INCLUDE_DIRECTORIES "/include;${_IMPORT_PREFIX}/include;${_IMPORT_PREFIX}/include/highs"
65
65
  INTERFACE_LINK_LIBRARIES "ZLIB::ZLIB;Threads::Threads"
66
66
  INTERFACE_POSITION_INDEPENDENT_CODE "ON"
67
67
  )
@@ -0,0 +1,43 @@
1
+ # This is a basic version file for the Config-mode of find_package().
2
+ # It is used by write_basic_package_version_file() as input file for configure_file()
3
+ # to create a version-file which can be installed along a config.cmake file.
4
+ #
5
+ # The created file sets PACKAGE_VERSION_EXACT if the current version string and
6
+ # the requested version string are exactly the same and it sets
7
+ # PACKAGE_VERSION_COMPATIBLE if the current version is >= requested version.
8
+ # The variable CVF_VERSION must be set before calling configure_file().
9
+
10
+ set(PACKAGE_VERSION "1.11.3")
11
+
12
+ if (PACKAGE_FIND_VERSION_RANGE)
13
+ # Package version must be in the requested version range
14
+ if ((PACKAGE_FIND_VERSION_RANGE_MIN STREQUAL "INCLUDE" AND PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION_MIN)
15
+ OR ((PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "INCLUDE" AND PACKAGE_VERSION VERSION_GREATER PACKAGE_FIND_VERSION_MAX)
16
+ OR (PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "EXCLUDE" AND PACKAGE_VERSION VERSION_GREATER_EQUAL PACKAGE_FIND_VERSION_MAX)))
17
+ set(PACKAGE_VERSION_COMPATIBLE FALSE)
18
+ else()
19
+ set(PACKAGE_VERSION_COMPATIBLE TRUE)
20
+ endif()
21
+ else()
22
+ if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION)
23
+ set(PACKAGE_VERSION_COMPATIBLE FALSE)
24
+ else()
25
+ set(PACKAGE_VERSION_COMPATIBLE TRUE)
26
+ if(PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION)
27
+ set(PACKAGE_VERSION_EXACT TRUE)
28
+ endif()
29
+ endif()
30
+ endif()
31
+
32
+
33
+ # if the installed or the using project don't have CMAKE_SIZEOF_VOID_P set, ignore it:
34
+ if("${CMAKE_SIZEOF_VOID_P}" STREQUAL "" OR "8" STREQUAL "")
35
+ return()
36
+ endif()
37
+
38
+ # check that the installed version has the same 32/64bit-ness as the one which is currently searching:
39
+ if(NOT CMAKE_SIZEOF_VOID_P STREQUAL "8")
40
+ math(EXPR installedBits "8 * 8")
41
+ set(PACKAGE_VERSION "${PACKAGE_VERSION} (${installedBits}bit)")
42
+ set(PACKAGE_VERSION_UNSUITABLE TRUE)
43
+ endif()
@@ -0,0 +1,69 @@
1
+
2
+ ####### Expanded from @PACKAGE_INIT@ by configure_package_config_file() #######
3
+ ####### Any changes to this file will be overwritten by the next CMake run ####
4
+ ####### The input file was libzip-config.cmake.in ########
5
+
6
+ get_filename_component(PACKAGE_PREFIX_DIR "${CMAKE_CURRENT_LIST_DIR}/../../../" ABSOLUTE)
7
+
8
+ macro(set_and_check _var _file)
9
+ set(${_var} "${_file}")
10
+ if(NOT EXISTS "${_file}")
11
+ message(FATAL_ERROR "File or directory ${_file} referenced by variable ${_var} does not exist !")
12
+ endif()
13
+ endmacro()
14
+
15
+ macro(check_required_components _NAME)
16
+ foreach(comp ${${_NAME}_FIND_COMPONENTS})
17
+ if(NOT ${_NAME}_${comp}_FOUND)
18
+ if(${_NAME}_FIND_REQUIRED_${comp})
19
+ set(${_NAME}_FOUND FALSE)
20
+ endif()
21
+ endif()
22
+ endforeach()
23
+ endmacro()
24
+
25
+ ####################################################################################
26
+
27
+ # We need to supply transitive dependencies if this config is for a static library
28
+ set(IS_SHARED OFF)
29
+ if (NOT IS_SHARED)
30
+ include(CMakeFindDependencyMacro)
31
+ set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_CURRENT_LIST_DIR}/modules")
32
+
33
+ set(ENABLE_BZIP2 )
34
+ set(ENABLE_LZMA )
35
+ set(ENABLE_ZSTD )
36
+ set(ENABLE_GNUTLS )
37
+ set(ENABLE_MBEDTLS )
38
+ set(ENABLE_OPENSSL )
39
+
40
+ find_dependency(ZLIB 1.1.2)
41
+ if(ENABLE_BZIP2)
42
+ find_dependency(BZip2)
43
+ endif()
44
+
45
+ if(ENABLE_LZMA)
46
+ find_dependency(LibLZMA 5.2)
47
+ endif()
48
+
49
+ if(ENABLE_ZSTD)
50
+ find_dependency(zstd 1.3.6)
51
+ endif()
52
+
53
+ if(ENABLE_GNUTLS)
54
+ find_dependency(Nettle 3.0)
55
+ find_dependency(GnuTLS)
56
+ endif()
57
+ if(ENABLE_MBEDTLS)
58
+ find_dependency(MbedTLS 1.0)
59
+ endif()
60
+ if(ENABLE_OPENSSL)
61
+ find_dependency(OpenSSL)
62
+ endif()
63
+ endif()
64
+
65
+ # Provide all our library targets to users.
66
+ include("${CMAKE_CURRENT_LIST_DIR}/libzip-targets.cmake")
67
+
68
+ check_required_components(libzip)
69
+
@@ -0,0 +1,19 @@
1
+ #----------------------------------------------------------------
2
+ # Generated CMake target import file for configuration "Release".
3
+ #----------------------------------------------------------------
4
+
5
+ # Commands may need to know the format version.
6
+ set(CMAKE_IMPORT_FILE_VERSION 1)
7
+
8
+ # Import target "libzip::zip" for configuration "Release"
9
+ set_property(TARGET libzip::zip APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
10
+ set_target_properties(libzip::zip PROPERTIES
11
+ IMPORTED_LINK_INTERFACE_LANGUAGES_RELEASE "C"
12
+ IMPORTED_LOCATION_RELEASE "${_IMPORT_PREFIX}/lib/libzip.a"
13
+ )
14
+
15
+ list(APPEND _cmake_import_check_targets libzip::zip )
16
+ list(APPEND _cmake_import_check_files_for_libzip::zip "${_IMPORT_PREFIX}/lib/libzip.a" )
17
+
18
+ # Commands beyond this point should not need to know the version.
19
+ set(CMAKE_IMPORT_FILE_VERSION)
@@ -0,0 +1,107 @@
1
+ # Generated by CMake
2
+
3
+ if("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}" LESS 2.8)
4
+ message(FATAL_ERROR "CMake >= 2.8.12 required")
5
+ endif()
6
+ if(CMAKE_VERSION VERSION_LESS "2.8.12")
7
+ message(FATAL_ERROR "CMake >= 2.8.12 required")
8
+ endif()
9
+ cmake_policy(PUSH)
10
+ cmake_policy(VERSION 2.8.12...3.29)
11
+ #----------------------------------------------------------------
12
+ # Generated CMake target import file.
13
+ #----------------------------------------------------------------
14
+
15
+ # Commands may need to know the format version.
16
+ set(CMAKE_IMPORT_FILE_VERSION 1)
17
+
18
+ # Protect against multiple inclusion, which would fail when already imported targets are added once more.
19
+ set(_cmake_targets_defined "")
20
+ set(_cmake_targets_not_defined "")
21
+ set(_cmake_expected_targets "")
22
+ foreach(_cmake_expected_target IN ITEMS libzip::zip)
23
+ list(APPEND _cmake_expected_targets "${_cmake_expected_target}")
24
+ if(TARGET "${_cmake_expected_target}")
25
+ list(APPEND _cmake_targets_defined "${_cmake_expected_target}")
26
+ else()
27
+ list(APPEND _cmake_targets_not_defined "${_cmake_expected_target}")
28
+ endif()
29
+ endforeach()
30
+ unset(_cmake_expected_target)
31
+ if(_cmake_targets_defined STREQUAL _cmake_expected_targets)
32
+ unset(_cmake_targets_defined)
33
+ unset(_cmake_targets_not_defined)
34
+ unset(_cmake_expected_targets)
35
+ unset(CMAKE_IMPORT_FILE_VERSION)
36
+ cmake_policy(POP)
37
+ return()
38
+ endif()
39
+ if(NOT _cmake_targets_defined STREQUAL "")
40
+ string(REPLACE ";" ", " _cmake_targets_defined_text "${_cmake_targets_defined}")
41
+ string(REPLACE ";" ", " _cmake_targets_not_defined_text "${_cmake_targets_not_defined}")
42
+ message(FATAL_ERROR "Some (but not all) targets in this export set were already defined.\nTargets Defined: ${_cmake_targets_defined_text}\nTargets not yet defined: ${_cmake_targets_not_defined_text}\n")
43
+ endif()
44
+ unset(_cmake_targets_defined)
45
+ unset(_cmake_targets_not_defined)
46
+ unset(_cmake_expected_targets)
47
+
48
+
49
+ # Compute the installation prefix relative to this file.
50
+ get_filename_component(_IMPORT_PREFIX "${CMAKE_CURRENT_LIST_FILE}" PATH)
51
+ get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH)
52
+ get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH)
53
+ get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH)
54
+ if(_IMPORT_PREFIX STREQUAL "/")
55
+ set(_IMPORT_PREFIX "")
56
+ endif()
57
+
58
+ # Create imported target libzip::zip
59
+ add_library(libzip::zip STATIC IMPORTED)
60
+
61
+ set_target_properties(libzip::zip PROPERTIES
62
+ INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include;${_IMPORT_PREFIX}/include"
63
+ INTERFACE_LINK_LIBRARIES "\$<LINK_ONLY:ZLIB::ZLIB>"
64
+ )
65
+
66
+ # Load information for each installed configuration.
67
+ file(GLOB _cmake_config_files "${CMAKE_CURRENT_LIST_DIR}/libzip-targets-*.cmake")
68
+ foreach(_cmake_config_file IN LISTS _cmake_config_files)
69
+ include("${_cmake_config_file}")
70
+ endforeach()
71
+ unset(_cmake_config_file)
72
+ unset(_cmake_config_files)
73
+
74
+ # Cleanup temporary variables.
75
+ set(_IMPORT_PREFIX)
76
+
77
+ # Loop over all imported files and verify that they actually exist
78
+ foreach(_cmake_target IN LISTS _cmake_import_check_targets)
79
+ if(CMAKE_VERSION VERSION_LESS "3.28"
80
+ OR NOT DEFINED _cmake_import_check_xcframework_for_${_cmake_target}
81
+ OR NOT IS_DIRECTORY "${_cmake_import_check_xcframework_for_${_cmake_target}}")
82
+ foreach(_cmake_file IN LISTS "_cmake_import_check_files_for_${_cmake_target}")
83
+ if(NOT EXISTS "${_cmake_file}")
84
+ message(FATAL_ERROR "The imported target \"${_cmake_target}\" references the file
85
+ \"${_cmake_file}\"
86
+ but this file does not exist. Possible reasons include:
87
+ * The file was deleted, renamed, or moved to another location.
88
+ * An install or uninstall procedure did not complete successfully.
89
+ * The installation package was faulty and contained
90
+ \"${CMAKE_CURRENT_LIST_FILE}\"
91
+ but not all the files it references.
92
+ ")
93
+ endif()
94
+ endforeach()
95
+ endif()
96
+ unset(_cmake_file)
97
+ unset("_cmake_import_check_files_for_${_cmake_target}")
98
+ endforeach()
99
+ unset(_cmake_target)
100
+ unset(_cmake_import_check_targets)
101
+
102
+ # This file does not depend on other imported targets which have
103
+ # been exported from the same project but in a separate export set.
104
+
105
+ # Commands beyond this point should not need to know the version.
106
+ set(CMAKE_IMPORT_FILE_VERSION)
107
+ cmake_policy(POP)
@@ -0,0 +1,141 @@
1
+ # Copyright (C) 2020 Dieter Baron and Thomas Klausner
2
+ #
3
+ # The authors can be contacted at <info@libzip.org>
4
+ #
5
+ # Redistribution and use in source and binary forms, with or without
6
+ # modification, are permitted provided that the following conditions
7
+ # are met:
8
+ #
9
+ # 1. Redistributions of source code must retain the above copyright
10
+ # notice, this list of conditions and the following disclaimer.
11
+ #
12
+ # 2. Redistributions in binary form must reproduce the above copyright
13
+ # notice, this list of conditions and the following disclaimer in
14
+ # the documentation and/or other materials provided with the
15
+ # distribution.
16
+ #
17
+ # 3. The names of the authors may not be used to endorse or promote
18
+ # products derived from this software without specific prior
19
+ # written permission.
20
+ #
21
+ # THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS
22
+ # OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
23
+ # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24
+ # ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY
25
+ # DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26
+ # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
27
+ # GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28
+ # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
29
+ # IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
30
+ # OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
31
+ # IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32
+
33
+ #[=======================================================================[.rst:
34
+ FindMbedTLS
35
+ -------
36
+
37
+ Finds the Mbed TLS library.
38
+
39
+ Imported Targets
40
+ ^^^^^^^^^^^^^^^^
41
+
42
+ This module provides the following imported targets, if found:
43
+
44
+ ``MbedTLS::MbedTLS``
45
+ The Mbed TLS library
46
+
47
+ Result Variables
48
+ ^^^^^^^^^^^^^^^^
49
+
50
+ This will define the following variables:
51
+
52
+ ``MbedTLS_FOUND``
53
+ True if the system has the Mbed TLS library.
54
+ ``MbedTLS_VERSION``
55
+ The version of the Mbed TLS library which was found.
56
+ ``MbedTLS_INCLUDE_DIRS``
57
+ Include directories needed to use Mbed TLS.
58
+ ``MbedTLS_LIBRARIES``
59
+ Libraries needed to link to Mbed TLS.
60
+
61
+ Cache Variables
62
+ ^^^^^^^^^^^^^^^
63
+
64
+ The following cache variables may also be set:
65
+
66
+ ``MbedTLS_INCLUDE_DIR``
67
+ The directory containing ``mbedtls/aes.h``.
68
+ ``MbedTLS_LIBRARY``
69
+ The path to the Mbed TLS library.
70
+
71
+ #]=======================================================================]
72
+
73
+ # I'm not aware of a pkg-config file for mbedtls as of 2020/07/08.
74
+ #find_package(PkgConfig)
75
+ #pkg_check_modules(PC_MbedTLS QUIET mbedtls)
76
+
77
+ find_path(MbedTLS_INCLUDE_DIR
78
+ NAMES mbedtls/aes.h
79
+ # PATHS ${PC_MbedTLS_INCLUDE_DIRS}
80
+ )
81
+ find_library(MbedTLS_LIBRARY
82
+ NAMES mbedcrypto
83
+ # PATHS ${PC_MbedTLS_LIBRARY_DIRS}
84
+ )
85
+
86
+ # Extract version information from the header file
87
+ if(MbedTLS_INCLUDE_DIR)
88
+ # for major version 3
89
+ if(EXISTS ${MbedTLS_INCLUDE_DIR}/mbedtls/build_info.h)
90
+ file(STRINGS ${MbedTLS_INCLUDE_DIR}/mbedtls/build_info.h _ver_line
91
+ REGEX "^#define MBEDTLS_VERSION_STRING *\"[0-9]+\\.[0-9]+\\.[0-9]+\""
92
+ LIMIT_COUNT 1)
93
+ string(REGEX MATCH "[0-9]+\\.[0-9]+\\.[0-9]+"
94
+ MbedTLS_VERSION "${_ver_line}")
95
+ unset(_ver_line)
96
+ # for major version 2
97
+ elseif(EXISTS ${MbedTLS_INCLUDE_DIR}/mbedtls/version.h)
98
+ file(STRINGS ${MbedTLS_INCLUDE_DIR}/mbedtls/version.h _ver_line
99
+ REGEX "^#define MBEDTLS_VERSION_STRING *\"[0-9]+\\.[0-9]+\\.[0-9]+\""
100
+ LIMIT_COUNT 1)
101
+ string(REGEX MATCH "[0-9]+\\.[0-9]+\\.[0-9]+"
102
+ MbedTLS_VERSION "${_ver_line}")
103
+ unset(_ver_line)
104
+ else()
105
+ if(PC_MbedTLS_VERSION)
106
+ set(MbedTLS_VERSION ${PC_MbedTLS_VERSION})
107
+ else()
108
+ # version unknown
109
+ set(MbedTLS_VERSION "0.0")
110
+ endif()
111
+ endif()
112
+ endif()
113
+
114
+ include(FindPackageHandleStandardArgs)
115
+ find_package_handle_standard_args(MbedTLS
116
+ FOUND_VAR MbedTLS_FOUND
117
+ REQUIRED_VARS
118
+ MbedTLS_LIBRARY
119
+ MbedTLS_INCLUDE_DIR
120
+ VERSION_VAR MbedTLS_VERSION
121
+ )
122
+
123
+ if(MbedTLS_FOUND)
124
+ set(MbedTLS_LIBRARIES ${MbedTLS_LIBRARY})
125
+ set(MbedTLS_INCLUDE_DIRS ${MbedTLS_INCLUDE_DIR})
126
+ # set(MbedTLS_DEFINITIONS ${PC_MbedTLS_CFLAGS_OTHER})
127
+ endif()
128
+
129
+ if(MbedTLS_FOUND AND NOT TARGET MbedTLS::MbedTLS)
130
+ add_library(MbedTLS::MbedTLS UNKNOWN IMPORTED)
131
+ set_target_properties(MbedTLS::MbedTLS PROPERTIES
132
+ IMPORTED_LOCATION "${MbedTLS_LIBRARY}"
133
+ # INTERFACE_COMPILE_OPTIONS "${PC_MbedTLS_CFLAGS_OTHER}"
134
+ INTERFACE_INCLUDE_DIRECTORIES "${MbedTLS_INCLUDE_DIR}"
135
+ )
136
+ endif()
137
+
138
+ mark_as_advanced(
139
+ MbedTLS_INCLUDE_DIR
140
+ MbedTLS_LIBRARY
141
+ )