casadi 3.6.4__cp35-none-manylinux1_i686.whl → 3.6.5__cp35-none-manylinux1_i686.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- casadi/_casadi.so +0 -0
- casadi/casadi.py +328 -250
- casadi/clp +0 -0
- casadi/cmake/casadi-config-version.cmake +1 -1
- casadi/include/casadi/casadi.i +30 -15
- casadi/include/casadi/config.h +5 -5
- casadi/include/casadi/core/code_generator.hpp +29 -1
- casadi/include/casadi/core/core.hpp +1 -0
- casadi/include/casadi/core/generic_expression.hpp +1 -1
- casadi/include/casadi/core/generic_type.hpp +25 -1
- casadi/include/casadi/core/matrix_decl.hpp +15 -0
- casadi/include/casadi/core/runtime/casadi_nlp.hpp +131 -6
- casadi/include/casadi/core/runtime/casadi_sqpmethod.hpp +11 -1
- casadi/include/casadi/core/sparsity.hpp +5 -3
- casadi/include/casadi/core/tools.hpp +67 -0
- casadi/include/casadi/doc.i +1166 -816
- casadi/include/casadi/doc_merged.i +834 -569
- casadi/include/coin-or/IpAlgBuilder.hpp +417 -0
- casadi/include/coin-or/IpAlgStrategy.hpp +201 -0
- casadi/include/coin-or/IpAlgTypes.hpp +64 -0
- casadi/include/coin-or/IpAugSystemSolver.hpp +212 -0
- casadi/include/coin-or/IpBlas.hpp +426 -0
- casadi/include/coin-or/IpCachedResults.hpp +897 -0
- casadi/include/coin-or/IpCompoundMatrix.hpp +423 -0
- casadi/include/coin-or/IpCompoundSymMatrix.hpp +348 -0
- casadi/include/coin-or/IpCompoundVector.hpp +395 -0
- casadi/include/coin-or/IpConvCheck.hpp +97 -0
- casadi/include/coin-or/IpDebug.hpp +167 -0
- casadi/include/coin-or/IpDenseVector.hpp +626 -0
- casadi/include/coin-or/IpDiagMatrix.hpp +158 -0
- casadi/include/coin-or/IpEqMultCalculator.hpp +76 -0
- casadi/include/coin-or/IpException.hpp +156 -0
- casadi/include/coin-or/IpExpansionMatrix.hpp +245 -0
- casadi/include/coin-or/IpGenTMatrix.hpp +290 -0
- casadi/include/coin-or/IpHessianUpdater.hpp +73 -0
- casadi/include/coin-or/IpIdentityMatrix.hpp +167 -0
- casadi/include/coin-or/IpIpoptAlg.hpp +257 -0
- casadi/include/coin-or/IpIpoptApplication.hpp +367 -0
- casadi/include/coin-or/IpIpoptCalculatedQuantities.hpp +1009 -0
- casadi/include/coin-or/IpIpoptData.hpp +966 -0
- casadi/include/coin-or/IpIpoptNLP.hpp +328 -0
- casadi/include/coin-or/IpIterateInitializer.hpp +68 -0
- casadi/include/coin-or/IpIteratesVector.hpp +840 -0
- casadi/include/coin-or/IpIterationOutput.hpp +78 -0
- casadi/include/coin-or/IpJournalist.hpp +573 -0
- casadi/include/coin-or/IpLapack.hpp +227 -0
- casadi/include/coin-or/IpLibraryLoader.hpp +76 -0
- casadi/include/coin-or/IpLineSearch.hpp +106 -0
- casadi/include/coin-or/IpLinearSolvers.h +46 -0
- casadi/include/coin-or/IpMatrix.hpp +434 -0
- casadi/include/coin-or/IpMuUpdate.hpp +77 -0
- casadi/include/coin-or/IpNLP.hpp +306 -0
- casadi/include/coin-or/IpNLPScaling.hpp +582 -0
- casadi/include/coin-or/IpObserver.hpp +422 -0
- casadi/include/coin-or/IpOptionsList.hpp +412 -0
- casadi/include/coin-or/IpOrigIpoptNLP.hpp +603 -0
- casadi/include/coin-or/IpPDSystemSolver.hpp +137 -0
- casadi/include/coin-or/IpReferenced.hpp +262 -0
- casadi/include/coin-or/IpRegOptions.hpp +1152 -0
- casadi/include/coin-or/IpReturnCodes.h +23 -0
- casadi/include/coin-or/IpReturnCodes.hpp +18 -0
- casadi/include/coin-or/IpReturnCodes.inc +71 -0
- casadi/include/coin-or/IpReturnCodes_inc.h +45 -0
- casadi/include/coin-or/IpScaledMatrix.hpp +291 -0
- casadi/include/coin-or/IpSearchDirCalculator.hpp +72 -0
- casadi/include/coin-or/IpSmartPtr.hpp +865 -0
- casadi/include/coin-or/IpSolveStatistics.hpp +210 -0
- casadi/include/coin-or/IpSparseSymLinearSolverInterface.hpp +260 -0
- casadi/include/coin-or/IpStdAugSystemSolver.cpp +555 -0
- casadi/include/coin-or/IpStdCInterface.h +428 -0
- casadi/include/coin-or/IpSumSymMatrix.hpp +186 -0
- casadi/include/coin-or/IpSymLinearSolver.hpp +141 -0
- casadi/include/coin-or/IpSymMatrix.hpp +167 -0
- casadi/include/coin-or/IpSymScaledMatrix.hpp +255 -0
- casadi/include/coin-or/IpSymTMatrix.hpp +275 -0
- casadi/include/coin-or/IpTNLP.hpp +820 -0
- casadi/include/coin-or/IpTNLPAdapter.hpp +648 -0
- casadi/include/coin-or/IpTNLPReducer.hpp +274 -0
- casadi/include/coin-or/IpTaggedObject.hpp +128 -0
- casadi/include/coin-or/IpTimedTask.hpp +218 -0
- casadi/include/coin-or/IpTimingStatistics.hpp +323 -0
- casadi/include/coin-or/IpTripletHelper.hpp +308 -0
- casadi/include/coin-or/IpTypes.h +81 -0
- casadi/include/coin-or/IpTypes.hpp +30 -0
- casadi/include/coin-or/IpUtils.hpp +166 -0
- casadi/include/coin-or/IpVector.hpp +892 -0
- casadi/include/coin-or/IpZeroSymMatrix.hpp +155 -0
- casadi/include/coin-or/IpoptConfig.h +45 -0
- casadi/include/coin-or/SensAlgorithm.hpp +114 -0
- casadi/include/coin-or/SensApplication.hpp +188 -0
- casadi/include/coin-or/SensBacksolver.hpp +36 -0
- casadi/include/coin-or/SensMeasurement.hpp +56 -0
- casadi/include/coin-or/SensPCalculator.hpp +137 -0
- casadi/include/coin-or/SensRegOp.hpp +21 -0
- casadi/include/coin-or/SensSchurData.hpp +182 -0
- casadi/include/coin-or/SensSchurDriver.hpp +118 -0
- casadi/include/coin-or/SensSimpleBacksolver.hpp +49 -0
- casadi/include/coin-or/SensStepCalc.hpp +85 -0
- casadi/include/coin-or/SensUtils.hpp +63 -0
- casadi/include/coin-or/metis/defs.h +161 -0
- casadi/include/coin-or/metis/macros.h +143 -0
- casadi/include/coin-or/metis/metis.h +37 -0
- casadi/include/coin-or/metis/proto.h +505 -0
- casadi/include/coin-or/metis/rename.h +418 -0
- casadi/include/coin-or/metis/struct.h +251 -0
- casadi/include/coin-or/mumps/dmumps_c.h +142 -0
- casadi/include/coin-or/mumps/mumps_c_types.h +72 -0
- casadi/include/coin-or/mumps/mumps_compat.h +27 -0
- casadi/include/coin-or/mumps/mumps_int_def.h +11 -0
- casadi/include/coin-or/mumps/mumps_mpi.h +67 -0
- casadi/lib/libtinyxml2.a +0 -0
- casadi/libCbcSolver.so +0 -0
- casadi/libCbcSolver.so.3 +0 -0
- casadi/libCbcSolver.so.3.10.11 +0 -0
- casadi/libClpSolver.so +0 -0
- casadi/libClpSolver.so.1 +0 -0
- casadi/libClpSolver.so.1.14.9 +0 -0
- casadi/libbonmin.so +0 -0
- casadi/libbonmin.so.4 +0 -0
- casadi/libbonmin.so.4.8.9 +0 -0
- casadi/libcasadi.so +0 -0
- casadi/libcasadi.so.3.7 +0 -0
- casadi/libcasadi_nlpsol_ampl.so +0 -0
- casadi/libcasadi_nlpsol_ampl.so.3.7 +0 -0
- casadi/libcasadi_nlpsol_blocksqp.so +0 -0
- casadi/libcasadi_nlpsol_blocksqp.so.3.7 +0 -0
- casadi/libcasadi_nlpsol_bonmin.so +0 -0
- casadi/libcasadi_nlpsol_bonmin.so.3.7 +0 -0
- casadi/libcasadi_nlpsol_feasiblesqpmethod.so +0 -0
- casadi/libcasadi_nlpsol_feasiblesqpmethod.so.3.7 +0 -0
- casadi/libcasadi_nlpsol_ipopt.so +0 -0
- casadi/libcasadi_nlpsol_ipopt.so.3.7 +0 -0
- casadi/libcasadi_nlpsol_knitro.so +0 -0
- casadi/libcasadi_nlpsol_knitro.so.3.7 +0 -0
- casadi/libcasadi_nlpsol_qrsqp.so +0 -0
- casadi/libcasadi_nlpsol_qrsqp.so.3.7 +0 -0
- casadi/libcasadi_nlpsol_scpgen.so +0 -0
- casadi/libcasadi_nlpsol_scpgen.so.3.7 +0 -0
- casadi/libcasadi_nlpsol_snopt.so +0 -0
- casadi/libcasadi_nlpsol_snopt.so.3.7 +0 -0
- casadi/libcasadi_nlpsol_sqpmethod.so +0 -0
- casadi/libcasadi_nlpsol_sqpmethod.so.3.7 +0 -0
- casadi/libcasadi_nlpsol_worhp.so +0 -0
- casadi/libcasadi_nlpsol_worhp.so.3.7 +0 -0
- casadi/libcasadi_rootfinder_fast_newton.so +0 -0
- casadi/libcasadi_rootfinder_fast_newton.so.3.7 +0 -0
- casadi/libindirect.a +0 -0
- casadi/liblinsys.a +0 -0
- casadi/libosqp.a +0 -0
- casadi/libqdldl.a +0 -0
- casadi/libsuperscs.a +0 -0
- casadi/pkgconfig/casadi.pc +1 -1
- {casadi-3.6.4.dist-info → casadi-3.6.5.dist-info}/METADATA +11 -3
- {casadi-3.6.4.dist-info → casadi-3.6.5.dist-info}/RECORD +155 -61
- {casadi-3.6.4.dist-info → casadi-3.6.5.dist-info}/WHEEL +0 -0
casadi/casadi.py
CHANGED
@@ -1233,10 +1233,10 @@ class GenericType(PrintableCommon):
|
|
1233
1233
|
Extra doc: https://github.com/casadi/casadi/wiki/L_17r
|
1234
1234
|
|
1235
1235
|
Doc source:
|
1236
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/generic_type.hpp#
|
1236
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/generic_type.hpp#L249
|
1237
1237
|
|
1238
1238
|
Implementation:
|
1239
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/generic_type.cpp#
|
1239
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/generic_type.cpp#L737-L740
|
1240
1240
|
|
1241
1241
|
|
1242
1242
|
|
@@ -1293,10 +1293,10 @@ class GenericType(PrintableCommon):
|
|
1293
1293
|
Default constructor.
|
1294
1294
|
|
1295
1295
|
Doc source:
|
1296
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/generic_type.hpp#
|
1296
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/generic_type.hpp#L85
|
1297
1297
|
|
1298
1298
|
Implementation:
|
1299
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/generic_type.cpp#
|
1299
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/generic_type.cpp#L249-L250
|
1300
1300
|
|
1301
1301
|
|
1302
1302
|
|
@@ -3370,20 +3370,6 @@ def Sparsity_kkt(*args) -> "casadi::Sparsity":
|
|
3370
3370
|
return _casadi.Sparsity_kkt(*args)
|
3371
3371
|
|
3372
3372
|
|
3373
|
-
def hash_combine(*args) -> "void":
|
3374
|
-
"""
|
3375
|
-
|
3376
|
-
|
3377
|
-
::
|
3378
|
-
|
3379
|
-
hash_combine(std::size_t & seed, [int] v)
|
3380
|
-
hash_combine(std::size_t & seed, casadi_int const * v, std::size_t sz)
|
3381
|
-
|
3382
|
-
|
3383
|
-
|
3384
|
-
"""
|
3385
|
-
return _casadi.hash_combine(*args)
|
3386
|
-
|
3387
3373
|
def hash_sparsity(*args) -> "std::size_t":
|
3388
3374
|
"""
|
3389
3375
|
|
@@ -10258,7 +10244,7 @@ class DM(MatrixCommon, GenericExpressionCommon, GenDM, PrintableCommon):
|
|
10258
10244
|
Extra doc: https://github.com/casadi/casadi/wiki/L_19v
|
10259
10245
|
|
10260
10246
|
Doc source:
|
10261
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#
|
10247
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#L1100
|
10262
10248
|
|
10263
10249
|
|
10264
10250
|
|
@@ -10282,7 +10268,7 @@ class DM(MatrixCommon, GenericExpressionCommon, GenDM, PrintableCommon):
|
|
10282
10268
|
Extra doc: https://github.com/casadi/casadi/wiki/L_19w
|
10283
10269
|
|
10284
10270
|
Doc source:
|
10285
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#
|
10271
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#L1107
|
10286
10272
|
|
10287
10273
|
|
10288
10274
|
|
@@ -10306,7 +10292,7 @@ class DM(MatrixCommon, GenericExpressionCommon, GenDM, PrintableCommon):
|
|
10306
10292
|
Extra doc: https://github.com/casadi/casadi/wiki/L_19x
|
10307
10293
|
|
10308
10294
|
Doc source:
|
10309
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#
|
10295
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#L1112
|
10310
10296
|
|
10311
10297
|
|
10312
10298
|
|
@@ -10330,7 +10316,7 @@ class DM(MatrixCommon, GenericExpressionCommon, GenDM, PrintableCommon):
|
|
10330
10316
|
Extra doc: https://github.com/casadi/casadi/wiki/L_19y
|
10331
10317
|
|
10332
10318
|
Doc source:
|
10333
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#
|
10319
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#L1117
|
10334
10320
|
|
10335
10321
|
|
10336
10322
|
|
@@ -10354,7 +10340,7 @@ class DM(MatrixCommon, GenericExpressionCommon, GenDM, PrintableCommon):
|
|
10354
10340
|
Extra doc: https://github.com/casadi/casadi/wiki/L_19z
|
10355
10341
|
|
10356
10342
|
Doc source:
|
10357
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#
|
10343
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#L1122
|
10358
10344
|
|
10359
10345
|
|
10360
10346
|
|
@@ -10380,7 +10366,7 @@ class DM(MatrixCommon, GenericExpressionCommon, GenDM, PrintableCommon):
|
|
10380
10366
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1a0
|
10381
10367
|
|
10382
10368
|
Doc source:
|
10383
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#
|
10369
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#L1129
|
10384
10370
|
|
10385
10371
|
|
10386
10372
|
|
@@ -10432,7 +10418,7 @@ class DM(MatrixCommon, GenericExpressionCommon, GenDM, PrintableCommon):
|
|
10432
10418
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1a1
|
10433
10419
|
|
10434
10420
|
Doc source:
|
10435
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#
|
10421
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#L1140
|
10436
10422
|
|
10437
10423
|
|
10438
10424
|
|
@@ -10454,7 +10440,7 @@ class DM(MatrixCommon, GenericExpressionCommon, GenDM, PrintableCommon):
|
|
10454
10440
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1a4
|
10455
10441
|
|
10456
10442
|
Doc source:
|
10457
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#
|
10443
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#L1157
|
10458
10444
|
|
10459
10445
|
|
10460
10446
|
|
@@ -10476,7 +10462,7 @@ class DM(MatrixCommon, GenericExpressionCommon, GenDM, PrintableCommon):
|
|
10476
10462
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1a3
|
10477
10463
|
|
10478
10464
|
Doc source:
|
10479
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#
|
10465
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#L1150
|
10480
10466
|
|
10481
10467
|
|
10482
10468
|
|
@@ -10630,7 +10616,7 @@ class DM(MatrixCommon, GenericExpressionCommon, GenDM, PrintableCommon):
|
|
10630
10616
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1ab
|
10631
10617
|
|
10632
10618
|
Doc source:
|
10633
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#
|
10619
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#L1216
|
10634
10620
|
|
10635
10621
|
|
10636
10622
|
|
@@ -10659,7 +10645,7 @@ class DM(MatrixCommon, GenericExpressionCommon, GenDM, PrintableCommon):
|
|
10659
10645
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1ab
|
10660
10646
|
|
10661
10647
|
Doc source:
|
10662
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#
|
10648
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#L1212
|
10663
10649
|
|
10664
10650
|
|
10665
10651
|
|
@@ -10680,7 +10666,7 @@ class DM(MatrixCommon, GenericExpressionCommon, GenDM, PrintableCommon):
|
|
10680
10666
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1ab
|
10681
10667
|
|
10682
10668
|
Doc source:
|
10683
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#
|
10669
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#L1216
|
10684
10670
|
|
10685
10671
|
|
10686
10672
|
|
@@ -10735,7 +10721,7 @@ class DM(MatrixCommon, GenericExpressionCommon, GenDM, PrintableCommon):
|
|
10735
10721
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1ah
|
10736
10722
|
|
10737
10723
|
Doc source:
|
10738
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#
|
10724
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#L1264
|
10739
10725
|
|
10740
10726
|
|
10741
10727
|
|
@@ -10753,7 +10739,7 @@ class DM(MatrixCommon, GenericExpressionCommon, GenDM, PrintableCommon):
|
|
10753
10739
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1ah
|
10754
10740
|
|
10755
10741
|
Doc source:
|
10756
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#
|
10742
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#L1264
|
10757
10743
|
|
10758
10744
|
|
10759
10745
|
|
@@ -10774,7 +10760,7 @@ class DM(MatrixCommon, GenericExpressionCommon, GenDM, PrintableCommon):
|
|
10774
10760
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1ae
|
10775
10761
|
|
10776
10762
|
Doc source:
|
10777
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#
|
10763
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#L1249
|
10778
10764
|
|
10779
10765
|
|
10780
10766
|
|
@@ -10831,7 +10817,7 @@ class DM(MatrixCommon, GenericExpressionCommon, GenDM, PrintableCommon):
|
|
10831
10817
|
|
10832
10818
|
|
10833
10819
|
Doc source:
|
10834
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#
|
10820
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#L1284
|
10835
10821
|
|
10836
10822
|
|
10837
10823
|
|
@@ -11491,7 +11477,7 @@ def DM_rand(*args) -> "casadi::Matrix< double >":
|
|
11491
11477
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1ab
|
11492
11478
|
|
11493
11479
|
Doc source:
|
11494
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#
|
11480
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#L1216
|
11495
11481
|
|
11496
11482
|
|
11497
11483
|
|
@@ -11520,7 +11506,7 @@ def DM_rand(*args) -> "casadi::Matrix< double >":
|
|
11520
11506
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1ab
|
11521
11507
|
|
11522
11508
|
Doc source:
|
11523
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#
|
11509
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#L1212
|
11524
11510
|
|
11525
11511
|
|
11526
11512
|
|
@@ -11541,7 +11527,7 @@ def DM_rand(*args) -> "casadi::Matrix< double >":
|
|
11541
11527
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1ab
|
11542
11528
|
|
11543
11529
|
Doc source:
|
11544
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#
|
11530
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#L1216
|
11545
11531
|
|
11546
11532
|
|
11547
11533
|
|
@@ -12698,7 +12684,7 @@ class SX(MatrixCommon, GenericExpressionCommon, GenSX, PrintableCommon):
|
|
12698
12684
|
Extra doc: https://github.com/casadi/casadi/wiki/L_19v
|
12699
12685
|
|
12700
12686
|
Doc source:
|
12701
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#
|
12687
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#L1100
|
12702
12688
|
|
12703
12689
|
|
12704
12690
|
|
@@ -12722,7 +12708,7 @@ class SX(MatrixCommon, GenericExpressionCommon, GenSX, PrintableCommon):
|
|
12722
12708
|
Extra doc: https://github.com/casadi/casadi/wiki/L_19w
|
12723
12709
|
|
12724
12710
|
Doc source:
|
12725
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#
|
12711
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#L1107
|
12726
12712
|
|
12727
12713
|
|
12728
12714
|
|
@@ -12746,7 +12732,7 @@ class SX(MatrixCommon, GenericExpressionCommon, GenSX, PrintableCommon):
|
|
12746
12732
|
Extra doc: https://github.com/casadi/casadi/wiki/L_19x
|
12747
12733
|
|
12748
12734
|
Doc source:
|
12749
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#
|
12735
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#L1112
|
12750
12736
|
|
12751
12737
|
|
12752
12738
|
|
@@ -12770,7 +12756,7 @@ class SX(MatrixCommon, GenericExpressionCommon, GenSX, PrintableCommon):
|
|
12770
12756
|
Extra doc: https://github.com/casadi/casadi/wiki/L_19y
|
12771
12757
|
|
12772
12758
|
Doc source:
|
12773
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#
|
12759
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#L1117
|
12774
12760
|
|
12775
12761
|
|
12776
12762
|
|
@@ -12794,7 +12780,7 @@ class SX(MatrixCommon, GenericExpressionCommon, GenSX, PrintableCommon):
|
|
12794
12780
|
Extra doc: https://github.com/casadi/casadi/wiki/L_19z
|
12795
12781
|
|
12796
12782
|
Doc source:
|
12797
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#
|
12783
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#L1122
|
12798
12784
|
|
12799
12785
|
|
12800
12786
|
|
@@ -12820,7 +12806,7 @@ class SX(MatrixCommon, GenericExpressionCommon, GenSX, PrintableCommon):
|
|
12820
12806
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1a0
|
12821
12807
|
|
12822
12808
|
Doc source:
|
12823
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#
|
12809
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#L1129
|
12824
12810
|
|
12825
12811
|
|
12826
12812
|
|
@@ -12872,7 +12858,7 @@ class SX(MatrixCommon, GenericExpressionCommon, GenSX, PrintableCommon):
|
|
12872
12858
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1a1
|
12873
12859
|
|
12874
12860
|
Doc source:
|
12875
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#
|
12861
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#L1140
|
12876
12862
|
|
12877
12863
|
|
12878
12864
|
|
@@ -12894,7 +12880,7 @@ class SX(MatrixCommon, GenericExpressionCommon, GenSX, PrintableCommon):
|
|
12894
12880
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1a4
|
12895
12881
|
|
12896
12882
|
Doc source:
|
12897
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#
|
12883
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#L1157
|
12898
12884
|
|
12899
12885
|
|
12900
12886
|
|
@@ -12916,7 +12902,7 @@ class SX(MatrixCommon, GenericExpressionCommon, GenSX, PrintableCommon):
|
|
12916
12902
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1a3
|
12917
12903
|
|
12918
12904
|
Doc source:
|
12919
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#
|
12905
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#L1150
|
12920
12906
|
|
12921
12907
|
|
12922
12908
|
|
@@ -13070,7 +13056,7 @@ class SX(MatrixCommon, GenericExpressionCommon, GenSX, PrintableCommon):
|
|
13070
13056
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1ab
|
13071
13057
|
|
13072
13058
|
Doc source:
|
13073
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#
|
13059
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#L1216
|
13074
13060
|
|
13075
13061
|
|
13076
13062
|
|
@@ -13099,7 +13085,7 @@ class SX(MatrixCommon, GenericExpressionCommon, GenSX, PrintableCommon):
|
|
13099
13085
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1ab
|
13100
13086
|
|
13101
13087
|
Doc source:
|
13102
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#
|
13088
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#L1212
|
13103
13089
|
|
13104
13090
|
|
13105
13091
|
|
@@ -13120,7 +13106,7 @@ class SX(MatrixCommon, GenericExpressionCommon, GenSX, PrintableCommon):
|
|
13120
13106
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1ab
|
13121
13107
|
|
13122
13108
|
Doc source:
|
13123
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#
|
13109
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#L1216
|
13124
13110
|
|
13125
13111
|
|
13126
13112
|
|
@@ -13175,7 +13161,7 @@ class SX(MatrixCommon, GenericExpressionCommon, GenSX, PrintableCommon):
|
|
13175
13161
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1ah
|
13176
13162
|
|
13177
13163
|
Doc source:
|
13178
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#
|
13164
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#L1264
|
13179
13165
|
|
13180
13166
|
|
13181
13167
|
|
@@ -13193,7 +13179,7 @@ class SX(MatrixCommon, GenericExpressionCommon, GenSX, PrintableCommon):
|
|
13193
13179
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1ah
|
13194
13180
|
|
13195
13181
|
Doc source:
|
13196
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#
|
13182
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#L1264
|
13197
13183
|
|
13198
13184
|
|
13199
13185
|
|
@@ -13214,7 +13200,7 @@ class SX(MatrixCommon, GenericExpressionCommon, GenSX, PrintableCommon):
|
|
13214
13200
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1ae
|
13215
13201
|
|
13216
13202
|
Doc source:
|
13217
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#
|
13203
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#L1249
|
13218
13204
|
|
13219
13205
|
|
13220
13206
|
|
@@ -13271,7 +13257,7 @@ class SX(MatrixCommon, GenericExpressionCommon, GenSX, PrintableCommon):
|
|
13271
13257
|
|
13272
13258
|
|
13273
13259
|
Doc source:
|
13274
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#
|
13260
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#L1284
|
13275
13261
|
|
13276
13262
|
|
13277
13263
|
|
@@ -13846,7 +13832,7 @@ def SX_rand(*args) -> "casadi::Matrix< casadi::SXElem >":
|
|
13846
13832
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1ab
|
13847
13833
|
|
13848
13834
|
Doc source:
|
13849
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#
|
13835
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#L1216
|
13850
13836
|
|
13851
13837
|
|
13852
13838
|
|
@@ -13875,7 +13861,7 @@ def SX_rand(*args) -> "casadi::Matrix< casadi::SXElem >":
|
|
13875
13861
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1ab
|
13876
13862
|
|
13877
13863
|
Doc source:
|
13878
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#
|
13864
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#L1212
|
13879
13865
|
|
13880
13866
|
|
13881
13867
|
|
@@ -13896,7 +13882,7 @@ def SX_rand(*args) -> "casadi::Matrix< casadi::SXElem >":
|
|
13896
13882
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1ab
|
13897
13883
|
|
13898
13884
|
Doc source:
|
13899
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#
|
13885
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/matrix_decl.hpp#L1216
|
13900
13886
|
|
13901
13887
|
|
13902
13888
|
|
@@ -17344,6 +17330,12 @@ class Function(SharedObject, PrintableCommon):
|
|
17344
17330
|
| | | evaluation fails | |
|
17345
17331
|
| | | (default true). | |
|
17346
17332
|
+------------------+-----------------+------------------+------------------+
|
17333
|
+
| external_transfo | OT_VECTORVECTOR | List of external | casadi::Function |
|
17334
|
+
| rm | | _transform | Internal |
|
17335
|
+
| | | instruction | |
|
17336
|
+
| | | arguments. | |
|
17337
|
+
| | | Default: empty | |
|
17338
|
+
+------------------+-----------------+------------------+------------------+
|
17347
17339
|
| fd_method | OT_STRING | Method for | casadi::Function |
|
17348
17340
|
| | | finite | Internal |
|
17349
17341
|
| | | differencing | |
|
@@ -17631,7 +17623,7 @@ class Function(SharedObject, PrintableCommon):
|
|
17631
17623
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L189
|
17632
17624
|
|
17633
17625
|
Implementation:
|
17634
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
17626
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L293-L305
|
17635
17627
|
|
17636
17628
|
|
17637
17629
|
|
@@ -17683,7 +17675,7 @@ class Function(SharedObject, PrintableCommon):
|
|
17683
17675
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L185
|
17684
17676
|
|
17685
17677
|
Implementation:
|
17686
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
17678
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L284-L291
|
17687
17679
|
|
17688
17680
|
|
17689
17681
|
|
@@ -17738,7 +17730,7 @@ class Function(SharedObject, PrintableCommon):
|
|
17738
17730
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L189
|
17739
17731
|
|
17740
17732
|
Implementation:
|
17741
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
17733
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L293-L305
|
17742
17734
|
|
17743
17735
|
|
17744
17736
|
|
@@ -17769,7 +17761,7 @@ class Function(SharedObject, PrintableCommon):
|
|
17769
17761
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L207
|
17770
17762
|
|
17771
17763
|
Implementation:
|
17772
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
17764
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L317-L333
|
17773
17765
|
|
17774
17766
|
|
17775
17767
|
|
@@ -17790,7 +17782,7 @@ class Function(SharedObject, PrintableCommon):
|
|
17790
17782
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L206
|
17791
17783
|
|
17792
17784
|
Implementation:
|
17793
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
17785
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L307-L315
|
17794
17786
|
|
17795
17787
|
|
17796
17788
|
|
@@ -17814,7 +17806,7 @@ class Function(SharedObject, PrintableCommon):
|
|
17814
17806
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L207
|
17815
17807
|
|
17816
17808
|
Implementation:
|
17817
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
17809
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L317-L333
|
17818
17810
|
|
17819
17811
|
|
17820
17812
|
|
@@ -17842,7 +17834,7 @@ class Function(SharedObject, PrintableCommon):
|
|
17842
17834
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L228
|
17843
17835
|
|
17844
17836
|
Implementation:
|
17845
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
17837
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L818-L820
|
17846
17838
|
|
17847
17839
|
|
17848
17840
|
|
@@ -17867,7 +17859,7 @@ class Function(SharedObject, PrintableCommon):
|
|
17867
17859
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L233
|
17868
17860
|
|
17869
17861
|
Implementation:
|
17870
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
17862
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L822-L824
|
17871
17863
|
|
17872
17864
|
|
17873
17865
|
|
@@ -17914,7 +17906,7 @@ class Function(SharedObject, PrintableCommon):
|
|
17914
17906
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L239
|
17915
17907
|
|
17916
17908
|
Implementation:
|
17917
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
17909
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L826-L828
|
17918
17910
|
|
17919
17911
|
|
17920
17912
|
|
@@ -17988,7 +17980,7 @@ class Function(SharedObject, PrintableCommon):
|
|
17988
17980
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L241
|
17989
17981
|
|
17990
17982
|
Implementation:
|
17991
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
17983
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L830-L832
|
17992
17984
|
|
17993
17985
|
|
17994
17986
|
|
@@ -18062,7 +18054,7 @@ class Function(SharedObject, PrintableCommon):
|
|
18062
18054
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L243
|
18063
18055
|
|
18064
18056
|
Implementation:
|
18065
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
18057
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L842-L844
|
18066
18058
|
|
18067
18059
|
|
18068
18060
|
|
@@ -18136,7 +18128,7 @@ class Function(SharedObject, PrintableCommon):
|
|
18136
18128
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L253
|
18137
18129
|
|
18138
18130
|
Implementation:
|
18139
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
18131
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L834-L836
|
18140
18132
|
|
18141
18133
|
|
18142
18134
|
|
@@ -18210,7 +18202,7 @@ class Function(SharedObject, PrintableCommon):
|
|
18210
18202
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L255
|
18211
18203
|
|
18212
18204
|
Implementation:
|
18213
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
18205
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L838-L840
|
18214
18206
|
|
18215
18207
|
|
18216
18208
|
|
@@ -18284,7 +18276,7 @@ class Function(SharedObject, PrintableCommon):
|
|
18284
18276
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L257
|
18285
18277
|
|
18286
18278
|
Implementation:
|
18287
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
18279
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L846-L848
|
18288
18280
|
|
18289
18281
|
|
18290
18282
|
|
@@ -18363,7 +18355,7 @@ class Function(SharedObject, PrintableCommon):
|
|
18363
18355
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L269
|
18364
18356
|
|
18365
18357
|
Implementation:
|
18366
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
18358
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L850-L852
|
18367
18359
|
|
18368
18360
|
|
18369
18361
|
|
@@ -18389,7 +18381,7 @@ class Function(SharedObject, PrintableCommon):
|
|
18389
18381
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L270
|
18390
18382
|
|
18391
18383
|
Implementation:
|
18392
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
18384
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L866-L868
|
18393
18385
|
|
18394
18386
|
|
18395
18387
|
|
@@ -18470,7 +18462,7 @@ class Function(SharedObject, PrintableCommon):
|
|
18470
18462
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L280
|
18471
18463
|
|
18472
18464
|
Implementation:
|
18473
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
18465
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L854-L856
|
18474
18466
|
|
18475
18467
|
|
18476
18468
|
|
@@ -18496,7 +18488,7 @@ class Function(SharedObject, PrintableCommon):
|
|
18496
18488
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L281
|
18497
18489
|
|
18498
18490
|
Implementation:
|
18499
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
18491
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L870-L872
|
18500
18492
|
|
18501
18493
|
|
18502
18494
|
|
@@ -18577,7 +18569,7 @@ class Function(SharedObject, PrintableCommon):
|
|
18577
18569
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L291
|
18578
18570
|
|
18579
18571
|
Implementation:
|
18580
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
18572
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L858-L860
|
18581
18573
|
|
18582
18574
|
|
18583
18575
|
|
@@ -18603,7 +18595,7 @@ class Function(SharedObject, PrintableCommon):
|
|
18603
18595
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L292
|
18604
18596
|
|
18605
18597
|
Implementation:
|
18606
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
18598
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L874-L876
|
18607
18599
|
|
18608
18600
|
|
18609
18601
|
|
@@ -18684,7 +18676,7 @@ class Function(SharedObject, PrintableCommon):
|
|
18684
18676
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L302
|
18685
18677
|
|
18686
18678
|
Implementation:
|
18687
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
18679
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L862-L864
|
18688
18680
|
|
18689
18681
|
|
18690
18682
|
|
@@ -18710,7 +18702,7 @@ class Function(SharedObject, PrintableCommon):
|
|
18710
18702
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L303
|
18711
18703
|
|
18712
18704
|
Implementation:
|
18713
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
18705
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L878-L880
|
18714
18706
|
|
18715
18707
|
|
18716
18708
|
|
@@ -18765,7 +18757,7 @@ class Function(SharedObject, PrintableCommon):
|
|
18765
18757
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L320
|
18766
18758
|
|
18767
18759
|
Implementation:
|
18768
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
18760
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L974-L980
|
18769
18761
|
|
18770
18762
|
|
18771
18763
|
|
@@ -18786,7 +18778,7 @@ class Function(SharedObject, PrintableCommon):
|
|
18786
18778
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L320
|
18787
18779
|
|
18788
18780
|
Implementation:
|
18789
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
18781
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L974-L980
|
18790
18782
|
|
18791
18783
|
|
18792
18784
|
|
@@ -18810,7 +18802,7 @@ class Function(SharedObject, PrintableCommon):
|
|
18810
18802
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L310
|
18811
18803
|
|
18812
18804
|
Implementation:
|
18813
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
18805
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L950-L952
|
18814
18806
|
|
18815
18807
|
|
18816
18808
|
|
@@ -18839,7 +18831,7 @@ class Function(SharedObject, PrintableCommon):
|
|
18839
18831
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L325
|
18840
18832
|
|
18841
18833
|
Implementation:
|
18842
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
18834
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L982-L988
|
18843
18835
|
|
18844
18836
|
|
18845
18837
|
|
@@ -18860,7 +18852,7 @@ class Function(SharedObject, PrintableCommon):
|
|
18860
18852
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L325
|
18861
18853
|
|
18862
18854
|
Implementation:
|
18863
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
18855
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L982-L988
|
18864
18856
|
|
18865
18857
|
|
18866
18858
|
|
@@ -18884,7 +18876,7 @@ class Function(SharedObject, PrintableCommon):
|
|
18884
18876
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L315
|
18885
18877
|
|
18886
18878
|
Implementation:
|
18887
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
18879
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L954-L956
|
18888
18880
|
|
18889
18881
|
|
18890
18882
|
|
@@ -18918,7 +18910,7 @@ class Function(SharedObject, PrintableCommon):
|
|
18918
18910
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L333
|
18919
18911
|
|
18920
18912
|
Implementation:
|
18921
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
18913
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L958-L964
|
18922
18914
|
|
18923
18915
|
|
18924
18916
|
|
@@ -18949,7 +18941,7 @@ class Function(SharedObject, PrintableCommon):
|
|
18949
18941
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L341
|
18950
18942
|
|
18951
18943
|
Implementation:
|
18952
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
18944
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L966-L972
|
18953
18945
|
|
18954
18946
|
|
18955
18947
|
|
@@ -18974,7 +18966,7 @@ class Function(SharedObject, PrintableCommon):
|
|
18974
18966
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L346
|
18975
18967
|
|
18976
18968
|
Implementation:
|
18977
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
18969
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1454-L1456
|
18978
18970
|
|
18979
18971
|
|
18980
18972
|
|
@@ -18999,7 +18991,7 @@ class Function(SharedObject, PrintableCommon):
|
|
18999
18991
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L351
|
19000
18992
|
|
19001
18993
|
Implementation:
|
19002
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
18994
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1458-L1460
|
19003
18995
|
|
19004
18996
|
|
19005
18997
|
|
@@ -19024,7 +19016,7 @@ class Function(SharedObject, PrintableCommon):
|
|
19024
19016
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L356
|
19025
19017
|
|
19026
19018
|
Implementation:
|
19027
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
19019
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1462-L1464
|
19028
19020
|
|
19029
19021
|
|
19030
19022
|
|
@@ -19049,7 +19041,7 @@ class Function(SharedObject, PrintableCommon):
|
|
19049
19041
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L361
|
19050
19042
|
|
19051
19043
|
Implementation:
|
19052
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
19044
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1466-L1468
|
19053
19045
|
|
19054
19046
|
|
19055
19047
|
|
@@ -19074,7 +19066,7 @@ class Function(SharedObject, PrintableCommon):
|
|
19074
19066
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L366
|
19075
19067
|
|
19076
19068
|
Implementation:
|
19077
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
19069
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1470-L1472
|
19078
19070
|
|
19079
19071
|
|
19080
19072
|
|
@@ -19100,7 +19092,7 @@ class Function(SharedObject, PrintableCommon):
|
|
19100
19092
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L373
|
19101
19093
|
|
19102
19094
|
Implementation:
|
19103
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
19095
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L998-L1004
|
19104
19096
|
|
19105
19097
|
|
19106
19098
|
|
@@ -19121,7 +19113,7 @@ class Function(SharedObject, PrintableCommon):
|
|
19121
19113
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L372
|
19122
19114
|
|
19123
19115
|
Implementation:
|
19124
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
19116
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L990-L996
|
19125
19117
|
|
19126
19118
|
|
19127
19119
|
|
@@ -19145,7 +19137,7 @@ class Function(SharedObject, PrintableCommon):
|
|
19145
19137
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L373
|
19146
19138
|
|
19147
19139
|
Implementation:
|
19148
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
19140
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L998-L1004
|
19149
19141
|
|
19150
19142
|
|
19151
19143
|
|
@@ -19174,7 +19166,7 @@ class Function(SharedObject, PrintableCommon):
|
|
19174
19166
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L381
|
19175
19167
|
|
19176
19168
|
Implementation:
|
19177
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
19169
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1014-L1020
|
19178
19170
|
|
19179
19171
|
|
19180
19172
|
|
@@ -19195,7 +19187,7 @@ class Function(SharedObject, PrintableCommon):
|
|
19195
19187
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L380
|
19196
19188
|
|
19197
19189
|
Implementation:
|
19198
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
19190
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1006-L1012
|
19199
19191
|
|
19200
19192
|
|
19201
19193
|
|
@@ -19219,7 +19211,7 @@ class Function(SharedObject, PrintableCommon):
|
|
19219
19211
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L381
|
19220
19212
|
|
19221
19213
|
Implementation:
|
19222
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
19214
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1014-L1020
|
19223
19215
|
|
19224
19216
|
|
19225
19217
|
|
@@ -19248,7 +19240,7 @@ class Function(SharedObject, PrintableCommon):
|
|
19248
19240
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L390
|
19249
19241
|
|
19250
19242
|
Implementation:
|
19251
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
19243
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1038-L1044
|
19252
19244
|
|
19253
19245
|
|
19254
19246
|
|
@@ -19269,7 +19261,7 @@ class Function(SharedObject, PrintableCommon):
|
|
19269
19261
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L390
|
19270
19262
|
|
19271
19263
|
Implementation:
|
19272
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
19264
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1038-L1044
|
19273
19265
|
|
19274
19266
|
|
19275
19267
|
|
@@ -19293,7 +19285,7 @@ class Function(SharedObject, PrintableCommon):
|
|
19293
19285
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L388
|
19294
19286
|
|
19295
19287
|
Implementation:
|
19296
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
19288
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1022-L1028
|
19297
19289
|
|
19298
19290
|
|
19299
19291
|
|
@@ -19322,7 +19314,7 @@ class Function(SharedObject, PrintableCommon):
|
|
19322
19314
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L391
|
19323
19315
|
|
19324
19316
|
Implementation:
|
19325
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
19317
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1046-L1052
|
19326
19318
|
|
19327
19319
|
|
19328
19320
|
|
@@ -19343,7 +19335,7 @@ class Function(SharedObject, PrintableCommon):
|
|
19343
19335
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L391
|
19344
19336
|
|
19345
19337
|
Implementation:
|
19346
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
19338
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1046-L1052
|
19347
19339
|
|
19348
19340
|
|
19349
19341
|
|
@@ -19367,7 +19359,7 @@ class Function(SharedObject, PrintableCommon):
|
|
19367
19359
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L389
|
19368
19360
|
|
19369
19361
|
Implementation:
|
19370
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
19362
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1030-L1036
|
19371
19363
|
|
19372
19364
|
|
19373
19365
|
|
@@ -19409,7 +19401,7 @@ class Function(SharedObject, PrintableCommon):
|
|
19409
19401
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L407
|
19410
19402
|
|
19411
19403
|
Implementation:
|
19412
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
19404
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1877-L1883
|
19413
19405
|
|
19414
19406
|
|
19415
19407
|
|
@@ -19434,7 +19426,7 @@ class Function(SharedObject, PrintableCommon):
|
|
19434
19426
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L412
|
19435
19427
|
|
19436
19428
|
Implementation:
|
19437
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
19429
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1885-L1887
|
19438
19430
|
|
19439
19431
|
|
19440
19432
|
|
@@ -19459,7 +19451,7 @@ class Function(SharedObject, PrintableCommon):
|
|
19459
19451
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L417
|
19460
19452
|
|
19461
19453
|
Implementation:
|
19462
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
19454
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1889-L1891
|
19463
19455
|
|
19464
19456
|
|
19465
19457
|
|
@@ -19493,7 +19485,7 @@ class Function(SharedObject, PrintableCommon):
|
|
19493
19485
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L425
|
19494
19486
|
|
19495
19487
|
Implementation:
|
19496
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
19488
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1795-L1802
|
19497
19489
|
|
19498
19490
|
|
19499
19491
|
|
@@ -19518,7 +19510,7 @@ class Function(SharedObject, PrintableCommon):
|
|
19518
19510
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L432
|
19519
19511
|
|
19520
19512
|
Implementation:
|
19521
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
19513
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1126-L1128
|
19522
19514
|
|
19523
19515
|
|
19524
19516
|
|
@@ -19543,7 +19535,7 @@ class Function(SharedObject, PrintableCommon):
|
|
19543
19535
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L437
|
19544
19536
|
|
19545
19537
|
Implementation:
|
19546
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
19538
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1130-L1132
|
19547
19539
|
|
19548
19540
|
|
19549
19541
|
|
@@ -19568,7 +19560,7 @@ class Function(SharedObject, PrintableCommon):
|
|
19568
19560
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L442
|
19569
19561
|
|
19570
19562
|
Implementation:
|
19571
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
19563
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1134-L1136
|
19572
19564
|
|
19573
19565
|
|
19574
19566
|
|
@@ -19593,7 +19585,7 @@ class Function(SharedObject, PrintableCommon):
|
|
19593
19585
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L447
|
19594
19586
|
|
19595
19587
|
Implementation:
|
19596
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
19588
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1138-L1145
|
19597
19589
|
|
19598
19590
|
|
19599
19591
|
|
@@ -19624,7 +19616,7 @@ class Function(SharedObject, PrintableCommon):
|
|
19624
19616
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L455
|
19625
19617
|
|
19626
19618
|
Implementation:
|
19627
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
19619
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1147-L1157
|
19628
19620
|
|
19629
19621
|
|
19630
19622
|
|
@@ -19649,7 +19641,7 @@ class Function(SharedObject, PrintableCommon):
|
|
19649
19641
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L460
|
19650
19642
|
|
19651
19643
|
Implementation:
|
19652
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
19644
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L882-L884
|
19653
19645
|
|
19654
19646
|
|
19655
19647
|
|
@@ -19673,7 +19665,7 @@ class Function(SharedObject, PrintableCommon):
|
|
19673
19665
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L466
|
19674
19666
|
|
19675
19667
|
Implementation:
|
19676
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
19668
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L887-L893
|
19677
19669
|
|
19678
19670
|
|
19679
19671
|
|
@@ -19697,7 +19689,7 @@ class Function(SharedObject, PrintableCommon):
|
|
19697
19689
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L471
|
19698
19690
|
|
19699
19691
|
Implementation:
|
19700
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
19692
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L895-L903
|
19701
19693
|
|
19702
19694
|
|
19703
19695
|
|
@@ -19764,7 +19756,7 @@ class Function(SharedObject, PrintableCommon):
|
|
19764
19756
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L475
|
19765
19757
|
|
19766
19758
|
Implementation:
|
19767
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
19759
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L906-L912
|
19768
19760
|
|
19769
19761
|
|
19770
19762
|
|
@@ -19856,7 +19848,7 @@ class Function(SharedObject, PrintableCommon):
|
|
19856
19848
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L508
|
19857
19849
|
|
19858
19850
|
Implementation:
|
19859
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
19851
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L915-L921
|
19860
19852
|
|
19861
19853
|
|
19862
19854
|
|
@@ -19886,7 +19878,7 @@ class Function(SharedObject, PrintableCommon):
|
|
19886
19878
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L524
|
19887
19879
|
|
19888
19880
|
Implementation:
|
19889
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
19881
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1445-L1452
|
19890
19882
|
|
19891
19883
|
|
19892
19884
|
|
@@ -19907,7 +19899,7 @@ class Function(SharedObject, PrintableCommon):
|
|
19907
19899
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L520
|
19908
19900
|
|
19909
19901
|
Implementation:
|
19910
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
19902
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1427-L1434
|
19911
19903
|
|
19912
19904
|
|
19913
19905
|
|
@@ -19931,7 +19923,7 @@ class Function(SharedObject, PrintableCommon):
|
|
19931
19923
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L514
|
19932
19924
|
|
19933
19925
|
Implementation:
|
19934
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
19926
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L356-L363
|
19935
19927
|
|
19936
19928
|
|
19937
19929
|
|
@@ -19955,7 +19947,7 @@ class Function(SharedObject, PrintableCommon):
|
|
19955
19947
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L516
|
19956
19948
|
|
19957
19949
|
Implementation:
|
19958
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
19950
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L365-L372
|
19959
19951
|
|
19960
19952
|
|
19961
19953
|
|
@@ -19979,7 +19971,7 @@ class Function(SharedObject, PrintableCommon):
|
|
19979
19971
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L522
|
19980
19972
|
|
19981
19973
|
Implementation:
|
19982
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
19974
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1436-L1443
|
19983
19975
|
|
19984
19976
|
|
19985
19977
|
|
@@ -20003,7 +19995,7 @@ class Function(SharedObject, PrintableCommon):
|
|
20003
19995
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L524
|
20004
19996
|
|
20005
19997
|
Implementation:
|
20006
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
19998
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1445-L1452
|
20007
19999
|
|
20008
20000
|
|
20009
20001
|
|
@@ -20027,7 +20019,7 @@ class Function(SharedObject, PrintableCommon):
|
|
20027
20019
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L518
|
20028
20020
|
|
20029
20021
|
Implementation:
|
20030
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
20022
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L374-L381
|
20031
20023
|
|
20032
20024
|
|
20033
20025
|
|
@@ -20061,7 +20053,7 @@ class Function(SharedObject, PrintableCommon):
|
|
20061
20053
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L642
|
20062
20054
|
|
20063
20055
|
Implementation:
|
20064
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
20056
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L755-L762
|
20065
20057
|
|
20066
20058
|
|
20067
20059
|
|
@@ -20145,7 +20137,7 @@ class Function(SharedObject, PrintableCommon):
|
|
20145
20137
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L697
|
20146
20138
|
|
20147
20139
|
Implementation:
|
20148
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
20140
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L515-L517
|
20149
20141
|
|
20150
20142
|
|
20151
20143
|
|
@@ -20221,7 +20213,7 @@ class Function(SharedObject, PrintableCommon):
|
|
20221
20213
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L697
|
20222
20214
|
|
20223
20215
|
Implementation:
|
20224
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
20216
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L515-L517
|
20225
20217
|
|
20226
20218
|
|
20227
20219
|
|
@@ -20300,7 +20292,7 @@ class Function(SharedObject, PrintableCommon):
|
|
20300
20292
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L686
|
20301
20293
|
|
20302
20294
|
Implementation:
|
20303
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
20295
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L518-L520
|
20304
20296
|
|
20305
20297
|
|
20306
20298
|
|
@@ -20379,7 +20371,7 @@ class Function(SharedObject, PrintableCommon):
|
|
20379
20371
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L687
|
20380
20372
|
|
20381
20373
|
Implementation:
|
20382
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
20374
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L521-L549
|
20383
20375
|
|
20384
20376
|
|
20385
20377
|
|
@@ -20458,7 +20450,7 @@ class Function(SharedObject, PrintableCommon):
|
|
20458
20450
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L693
|
20459
20451
|
|
20460
20452
|
Implementation:
|
20461
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
20453
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L626-L634
|
20462
20454
|
|
20463
20455
|
|
20464
20456
|
|
@@ -20537,7 +20529,7 @@ class Function(SharedObject, PrintableCommon):
|
|
20537
20529
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L689
|
20538
20530
|
|
20539
20531
|
Implementation:
|
20540
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
20532
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L596-L624
|
20541
20533
|
|
20542
20534
|
|
20543
20535
|
|
@@ -20620,7 +20612,7 @@ class Function(SharedObject, PrintableCommon):
|
|
20620
20612
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L698
|
20621
20613
|
|
20622
20614
|
Implementation:
|
20623
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
20615
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L508-L514
|
20624
20616
|
|
20625
20617
|
|
20626
20618
|
|
@@ -20653,7 +20645,7 @@ class Function(SharedObject, PrintableCommon):
|
|
20653
20645
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L745
|
20654
20646
|
|
20655
20647
|
Implementation:
|
20656
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
20648
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L636-L642
|
20657
20649
|
|
20658
20650
|
|
20659
20651
|
|
@@ -20678,7 +20670,7 @@ class Function(SharedObject, PrintableCommon):
|
|
20678
20670
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L745
|
20679
20671
|
|
20680
20672
|
Implementation:
|
20681
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
20673
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L636-L642
|
20682
20674
|
|
20683
20675
|
|
20684
20676
|
|
@@ -20706,7 +20698,7 @@ class Function(SharedObject, PrintableCommon):
|
|
20706
20698
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L741
|
20707
20699
|
|
20708
20700
|
Implementation:
|
20709
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
20701
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L667-L674
|
20710
20702
|
|
20711
20703
|
|
20712
20704
|
|
@@ -20734,7 +20726,7 @@ class Function(SharedObject, PrintableCommon):
|
|
20734
20726
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L737
|
20735
20727
|
|
20736
20728
|
Implementation:
|
20737
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
20729
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L644-L665
|
20738
20730
|
|
20739
20731
|
|
20740
20732
|
|
@@ -20805,7 +20797,7 @@ class Function(SharedObject, PrintableCommon):
|
|
20805
20797
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L726
|
20806
20798
|
|
20807
20799
|
Implementation:
|
20808
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
20800
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L708-L743
|
20809
20801
|
|
20810
20802
|
|
20811
20803
|
|
@@ -20835,7 +20827,7 @@ class Function(SharedObject, PrintableCommon):
|
|
20835
20827
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L754
|
20836
20828
|
|
20837
20829
|
Implementation:
|
20838
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
20830
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L746-L753
|
20839
20831
|
|
20840
20832
|
|
20841
20833
|
|
@@ -20924,7 +20916,7 @@ class Function(SharedObject, PrintableCommon):
|
|
20924
20916
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L800
|
20925
20917
|
|
20926
20918
|
Implementation:
|
20927
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
20919
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1110-L1116
|
20928
20920
|
|
20929
20921
|
|
20930
20922
|
|
@@ -20969,7 +20961,7 @@ class Function(SharedObject, PrintableCommon):
|
|
20969
20961
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L820
|
20970
20962
|
|
20971
20963
|
Implementation:
|
20972
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
20964
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1118-L1124
|
20973
20965
|
|
20974
20966
|
|
20975
20967
|
|
@@ -20996,7 +20988,7 @@ class Function(SharedObject, PrintableCommon):
|
|
20996
20988
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L830
|
20997
20989
|
|
20998
20990
|
Implementation:
|
20999
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
20991
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L942-L948
|
21000
20992
|
|
21001
20993
|
|
21002
20994
|
|
@@ -21017,7 +21009,7 @@ class Function(SharedObject, PrintableCommon):
|
|
21017
21009
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L825
|
21018
21010
|
|
21019
21011
|
Implementation:
|
21020
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
21012
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L931-L940
|
21021
21013
|
|
21022
21014
|
|
21023
21015
|
|
@@ -21042,7 +21034,7 @@ class Function(SharedObject, PrintableCommon):
|
|
21042
21034
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L830
|
21043
21035
|
|
21044
21036
|
Implementation:
|
21045
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
21037
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L942-L948
|
21046
21038
|
|
21047
21039
|
|
21048
21040
|
|
@@ -21071,7 +21063,7 @@ class Function(SharedObject, PrintableCommon):
|
|
21071
21063
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L840
|
21072
21064
|
|
21073
21065
|
Implementation:
|
21074
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
21066
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1163-L1165
|
21075
21067
|
|
21076
21068
|
|
21077
21069
|
|
@@ -21092,7 +21084,7 @@ class Function(SharedObject, PrintableCommon):
|
|
21092
21084
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L840
|
21093
21085
|
|
21094
21086
|
Implementation:
|
21095
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
21087
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1163-L1165
|
21096
21088
|
|
21097
21089
|
|
21098
21090
|
|
@@ -21116,7 +21108,7 @@ class Function(SharedObject, PrintableCommon):
|
|
21116
21108
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L835
|
21117
21109
|
|
21118
21110
|
Implementation:
|
21119
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
21111
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1167-L1171
|
21120
21112
|
|
21121
21113
|
|
21122
21114
|
|
@@ -21144,7 +21136,7 @@ class Function(SharedObject, PrintableCommon):
|
|
21144
21136
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L845
|
21145
21137
|
|
21146
21138
|
Implementation:
|
21147
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
21139
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1173-L1175
|
21148
21140
|
|
21149
21141
|
|
21150
21142
|
|
@@ -21178,7 +21170,7 @@ class Function(SharedObject, PrintableCommon):
|
|
21178
21170
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L855
|
21179
21171
|
|
21180
21172
|
Implementation:
|
21181
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
21173
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1207-L1217
|
21182
21174
|
|
21183
21175
|
|
21184
21176
|
|
@@ -21207,7 +21199,7 @@ class Function(SharedObject, PrintableCommon):
|
|
21207
21199
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L855
|
21208
21200
|
|
21209
21201
|
Implementation:
|
21210
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
21202
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1207-L1217
|
21211
21203
|
|
21212
21204
|
|
21213
21205
|
|
@@ -21239,7 +21231,7 @@ class Function(SharedObject, PrintableCommon):
|
|
21239
21231
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L854
|
21240
21232
|
|
21241
21233
|
Implementation:
|
21242
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
21234
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1177-L1190
|
21243
21235
|
|
21244
21236
|
|
21245
21237
|
|
@@ -21276,7 +21268,7 @@ class Function(SharedObject, PrintableCommon):
|
|
21276
21268
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L866
|
21277
21269
|
|
21278
21270
|
Implementation:
|
21279
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
21271
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1219-L1229
|
21280
21272
|
|
21281
21273
|
|
21282
21274
|
|
@@ -21305,7 +21297,7 @@ class Function(SharedObject, PrintableCommon):
|
|
21305
21297
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L866
|
21306
21298
|
|
21307
21299
|
Implementation:
|
21308
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
21300
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1219-L1229
|
21309
21301
|
|
21310
21302
|
|
21311
21303
|
|
@@ -21337,7 +21329,7 @@ class Function(SharedObject, PrintableCommon):
|
|
21337
21329
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L865
|
21338
21330
|
|
21339
21331
|
Implementation:
|
21340
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
21332
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1192-L1205
|
21341
21333
|
|
21342
21334
|
|
21343
21335
|
|
@@ -21365,7 +21357,7 @@ class Function(SharedObject, PrintableCommon):
|
|
21365
21357
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L893
|
21366
21358
|
|
21367
21359
|
Implementation:
|
21368
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
21360
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1248-L1252
|
21369
21361
|
|
21370
21362
|
|
21371
21363
|
|
@@ -21393,7 +21385,7 @@ class Function(SharedObject, PrintableCommon):
|
|
21393
21385
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L900
|
21394
21386
|
|
21395
21387
|
Implementation:
|
21396
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
21388
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1243-L1246
|
21397
21389
|
|
21398
21390
|
|
21399
21391
|
|
@@ -21421,7 +21413,7 @@ class Function(SharedObject, PrintableCommon):
|
|
21421
21413
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L902
|
21422
21414
|
|
21423
21415
|
Implementation:
|
21424
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
21416
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1275-L1279
|
21425
21417
|
|
21426
21418
|
|
21427
21419
|
|
@@ -21444,7 +21436,7 @@ class Function(SharedObject, PrintableCommon):
|
|
21444
21436
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L902
|
21445
21437
|
|
21446
21438
|
Implementation:
|
21447
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
21439
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1275-L1279
|
21448
21440
|
|
21449
21441
|
|
21450
21442
|
|
@@ -21470,7 +21462,7 @@ class Function(SharedObject, PrintableCommon):
|
|
21470
21462
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L875
|
21471
21463
|
|
21472
21464
|
Implementation:
|
21473
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
21465
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1236-L1240
|
21474
21466
|
|
21475
21467
|
|
21476
21468
|
|
@@ -21497,7 +21489,7 @@ class Function(SharedObject, PrintableCommon):
|
|
21497
21489
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L932
|
21498
21490
|
|
21499
21491
|
Implementation:
|
21500
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
21492
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L927-L929
|
21501
21493
|
|
21502
21494
|
|
21503
21495
|
|
@@ -21526,7 +21518,7 @@ class Function(SharedObject, PrintableCommon):
|
|
21526
21518
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L944
|
21527
21519
|
|
21528
21520
|
Implementation:
|
21529
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
21521
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1542-L1548
|
21530
21522
|
|
21531
21523
|
|
21532
21524
|
|
@@ -21549,7 +21541,7 @@ class Function(SharedObject, PrintableCommon):
|
|
21549
21541
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L944
|
21550
21542
|
|
21551
21543
|
Implementation:
|
21552
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
21544
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1542-L1548
|
21553
21545
|
|
21554
21546
|
|
21555
21547
|
|
@@ -21575,7 +21567,7 @@ class Function(SharedObject, PrintableCommon):
|
|
21575
21567
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L940
|
21576
21568
|
|
21577
21569
|
Implementation:
|
21578
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
21570
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1526-L1532
|
21579
21571
|
|
21580
21572
|
|
21581
21573
|
|
@@ -21633,7 +21625,7 @@ class Function(SharedObject, PrintableCommon):
|
|
21633
21625
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L949
|
21634
21626
|
|
21635
21627
|
Implementation:
|
21636
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
21628
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1566-L1568
|
21637
21629
|
|
21638
21630
|
|
21639
21631
|
|
@@ -21656,7 +21648,7 @@ class Function(SharedObject, PrintableCommon):
|
|
21656
21648
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L949
|
21657
21649
|
|
21658
21650
|
Implementation:
|
21659
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
21651
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1566-L1568
|
21660
21652
|
|
21661
21653
|
|
21662
21654
|
|
@@ -21682,7 +21674,7 @@ class Function(SharedObject, PrintableCommon):
|
|
21682
21674
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L945
|
21683
21675
|
|
21684
21676
|
Implementation:
|
21685
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
21677
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1558-L1560
|
21686
21678
|
|
21687
21679
|
|
21688
21680
|
|
@@ -21740,7 +21732,7 @@ class Function(SharedObject, PrintableCommon):
|
|
21740
21732
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L962
|
21741
21733
|
|
21742
21734
|
Implementation:
|
21743
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
21735
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1550-L1556
|
21744
21736
|
|
21745
21737
|
|
21746
21738
|
|
@@ -21763,7 +21755,7 @@ class Function(SharedObject, PrintableCommon):
|
|
21763
21755
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L962
|
21764
21756
|
|
21765
21757
|
Implementation:
|
21766
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
21758
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1550-L1556
|
21767
21759
|
|
21768
21760
|
|
21769
21761
|
|
@@ -21789,7 +21781,7 @@ class Function(SharedObject, PrintableCommon):
|
|
21789
21781
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L958
|
21790
21782
|
|
21791
21783
|
Implementation:
|
21792
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
21784
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1534-L1540
|
21793
21785
|
|
21794
21786
|
|
21795
21787
|
|
@@ -21847,7 +21839,7 @@ class Function(SharedObject, PrintableCommon):
|
|
21847
21839
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L967
|
21848
21840
|
|
21849
21841
|
Implementation:
|
21850
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
21842
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1570-L1572
|
21851
21843
|
|
21852
21844
|
|
21853
21845
|
|
@@ -21870,7 +21862,7 @@ class Function(SharedObject, PrintableCommon):
|
|
21870
21862
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L967
|
21871
21863
|
|
21872
21864
|
Implementation:
|
21873
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
21865
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1570-L1572
|
21874
21866
|
|
21875
21867
|
|
21876
21868
|
|
@@ -21896,7 +21888,7 @@ class Function(SharedObject, PrintableCommon):
|
|
21896
21888
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L963
|
21897
21889
|
|
21898
21890
|
Implementation:
|
21899
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
21891
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1562-L1564
|
21900
21892
|
|
21901
21893
|
|
21902
21894
|
|
@@ -21950,7 +21942,7 @@ class Function(SharedObject, PrintableCommon):
|
|
21950
21942
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L974
|
21951
21943
|
|
21952
21944
|
Implementation:
|
21953
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
21945
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1574-L1576
|
21954
21946
|
|
21955
21947
|
|
21956
21948
|
|
@@ -21975,7 +21967,7 @@ class Function(SharedObject, PrintableCommon):
|
|
21975
21967
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L975
|
21976
21968
|
|
21977
21969
|
Implementation:
|
21978
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
21970
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1578-L1580
|
21979
21971
|
|
21980
21972
|
|
21981
21973
|
|
@@ -22000,7 +21992,7 @@ class Function(SharedObject, PrintableCommon):
|
|
22000
21992
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L976
|
22001
21993
|
|
22002
21994
|
Implementation:
|
22003
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
21995
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1582-L1584
|
22004
21996
|
|
22005
21997
|
|
22006
21998
|
|
@@ -22025,7 +22017,7 @@ class Function(SharedObject, PrintableCommon):
|
|
22025
22017
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L977
|
22026
22018
|
|
22027
22019
|
Implementation:
|
22028
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
22020
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1586-L1588
|
22029
22021
|
|
22030
22022
|
|
22031
22023
|
|
@@ -22059,7 +22051,7 @@ class Function(SharedObject, PrintableCommon):
|
|
22059
22051
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L996
|
22060
22052
|
|
22061
22053
|
Implementation:
|
22062
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
22054
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1626-L1628
|
22063
22055
|
|
22064
22056
|
|
22065
22057
|
|
@@ -22084,7 +22076,7 @@ class Function(SharedObject, PrintableCommon):
|
|
22084
22076
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L988
|
22085
22077
|
|
22086
22078
|
Implementation:
|
22087
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
22079
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1594-L1596
|
22088
22080
|
|
22089
22081
|
|
22090
22082
|
|
@@ -22112,7 +22104,7 @@ class Function(SharedObject, PrintableCommon):
|
|
22112
22104
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L987
|
22113
22105
|
|
22114
22106
|
Implementation:
|
22115
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
22107
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1590-L1592
|
22116
22108
|
|
22117
22109
|
|
22118
22110
|
|
@@ -22140,7 +22132,7 @@ class Function(SharedObject, PrintableCommon):
|
|
22140
22132
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L991
|
22141
22133
|
|
22142
22134
|
Implementation:
|
22143
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
22135
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1606-L1608
|
22144
22136
|
|
22145
22137
|
|
22146
22138
|
|
@@ -22168,7 +22160,7 @@ class Function(SharedObject, PrintableCommon):
|
|
22168
22160
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L992
|
22169
22161
|
|
22170
22162
|
Implementation:
|
22171
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
22163
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1610-L1612
|
22172
22164
|
|
22173
22165
|
|
22174
22166
|
|
@@ -22196,7 +22188,7 @@ class Function(SharedObject, PrintableCommon):
|
|
22196
22188
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L996
|
22197
22189
|
|
22198
22190
|
Implementation:
|
22199
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
22191
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1626-L1628
|
22200
22192
|
|
22201
22193
|
|
22202
22194
|
|
@@ -22224,7 +22216,7 @@ class Function(SharedObject, PrintableCommon):
|
|
22224
22216
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L995
|
22225
22217
|
|
22226
22218
|
Implementation:
|
22227
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
22219
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1622-L1624
|
22228
22220
|
|
22229
22221
|
|
22230
22222
|
|
@@ -22261,7 +22253,7 @@ class Function(SharedObject, PrintableCommon):
|
|
22261
22253
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L998
|
22262
22254
|
|
22263
22255
|
Implementation:
|
22264
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
22256
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1634-L1636
|
22265
22257
|
|
22266
22258
|
|
22267
22259
|
|
@@ -22286,7 +22278,7 @@ class Function(SharedObject, PrintableCommon):
|
|
22286
22278
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L990
|
22287
22279
|
|
22288
22280
|
Implementation:
|
22289
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
22281
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1602-L1604
|
22290
22282
|
|
22291
22283
|
|
22292
22284
|
|
@@ -22314,7 +22306,7 @@ class Function(SharedObject, PrintableCommon):
|
|
22314
22306
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L989
|
22315
22307
|
|
22316
22308
|
Implementation:
|
22317
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
22309
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1598-L1600
|
22318
22310
|
|
22319
22311
|
|
22320
22312
|
|
@@ -22342,7 +22334,7 @@ class Function(SharedObject, PrintableCommon):
|
|
22342
22334
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L993
|
22343
22335
|
|
22344
22336
|
Implementation:
|
22345
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
22337
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1614-L1616
|
22346
22338
|
|
22347
22339
|
|
22348
22340
|
|
@@ -22370,7 +22362,7 @@ class Function(SharedObject, PrintableCommon):
|
|
22370
22362
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L994
|
22371
22363
|
|
22372
22364
|
Implementation:
|
22373
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
22365
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1618-L1620
|
22374
22366
|
|
22375
22367
|
|
22376
22368
|
|
@@ -22398,7 +22390,7 @@ class Function(SharedObject, PrintableCommon):
|
|
22398
22390
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L998
|
22399
22391
|
|
22400
22392
|
Implementation:
|
22401
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
22393
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1634-L1636
|
22402
22394
|
|
22403
22395
|
|
22404
22396
|
|
@@ -22426,7 +22418,7 @@ class Function(SharedObject, PrintableCommon):
|
|
22426
22418
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L997
|
22427
22419
|
|
22428
22420
|
Implementation:
|
22429
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
22421
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1630-L1632
|
22430
22422
|
|
22431
22423
|
|
22432
22424
|
|
@@ -22454,7 +22446,7 @@ class Function(SharedObject, PrintableCommon):
|
|
22454
22446
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L1004
|
22455
22447
|
|
22456
22448
|
Implementation:
|
22457
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
22449
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1666-L1668
|
22458
22450
|
|
22459
22451
|
|
22460
22452
|
|
@@ -22479,7 +22471,7 @@ class Function(SharedObject, PrintableCommon):
|
|
22479
22471
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L1009
|
22480
22472
|
|
22481
22473
|
Implementation:
|
22482
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
22474
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1159-L1161
|
22483
22475
|
|
22484
22476
|
|
22485
22477
|
|
@@ -22504,7 +22496,7 @@ class Function(SharedObject, PrintableCommon):
|
|
22504
22496
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L1014
|
22505
22497
|
|
22506
22498
|
Implementation:
|
22507
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
22499
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1642-L1648
|
22508
22500
|
|
22509
22501
|
|
22510
22502
|
|
@@ -22529,7 +22521,7 @@ class Function(SharedObject, PrintableCommon):
|
|
22529
22521
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L1019
|
22530
22522
|
|
22531
22523
|
Implementation:
|
22532
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
22524
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1650-L1656
|
22533
22525
|
|
22534
22526
|
|
22535
22527
|
|
@@ -22554,7 +22546,7 @@ class Function(SharedObject, PrintableCommon):
|
|
22554
22546
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L1024
|
22555
22547
|
|
22556
22548
|
Implementation:
|
22557
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
22549
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1670-L1676
|
22558
22550
|
|
22559
22551
|
|
22560
22552
|
|
@@ -22579,7 +22571,7 @@ class Function(SharedObject, PrintableCommon):
|
|
22579
22571
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L1030
|
22580
22572
|
|
22581
22573
|
Implementation:
|
22582
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
22574
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1734-L1740
|
22583
22575
|
|
22584
22576
|
|
22585
22577
|
|
@@ -22604,7 +22596,7 @@ class Function(SharedObject, PrintableCommon):
|
|
22604
22596
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L1035
|
22605
22597
|
|
22606
22598
|
Implementation:
|
22607
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
22599
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1678-L1684
|
22608
22600
|
|
22609
22601
|
|
22610
22602
|
|
@@ -22629,7 +22621,7 @@ class Function(SharedObject, PrintableCommon):
|
|
22629
22621
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L1040
|
22630
22622
|
|
22631
22623
|
Implementation:
|
22632
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
22624
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1702-L1708
|
22633
22625
|
|
22634
22626
|
|
22635
22627
|
|
@@ -22656,7 +22648,7 @@ class Function(SharedObject, PrintableCommon):
|
|
22656
22648
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L1047
|
22657
22649
|
|
22658
22650
|
Implementation:
|
22659
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
22651
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1710-L1716
|
22660
22652
|
|
22661
22653
|
|
22662
22654
|
|
@@ -22682,7 +22674,7 @@ class Function(SharedObject, PrintableCommon):
|
|
22682
22674
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L1052
|
22683
22675
|
|
22684
22676
|
Implementation:
|
22685
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
22677
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1718-L1724
|
22686
22678
|
|
22687
22679
|
|
22688
22680
|
|
@@ -22709,7 +22701,7 @@ class Function(SharedObject, PrintableCommon):
|
|
22709
22701
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L1059
|
22710
22702
|
|
22711
22703
|
Implementation:
|
22712
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
22704
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1726-L1732
|
22713
22705
|
|
22714
22706
|
|
22715
22707
|
|
@@ -22734,7 +22726,7 @@ class Function(SharedObject, PrintableCommon):
|
|
22734
22726
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L1064
|
22735
22727
|
|
22736
22728
|
Implementation:
|
22737
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
22729
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1686-L1692
|
22738
22730
|
|
22739
22731
|
|
22740
22732
|
|
@@ -22763,7 +22755,7 @@ class Function(SharedObject, PrintableCommon):
|
|
22763
22755
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L1072
|
22764
22756
|
|
22765
22757
|
Implementation:
|
22766
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
22758
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1694-L1700
|
22767
22759
|
|
22768
22760
|
|
22769
22761
|
|
@@ -22788,7 +22780,7 @@ class Function(SharedObject, PrintableCommon):
|
|
22788
22780
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L1078
|
22789
22781
|
|
22790
22782
|
Implementation:
|
22791
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
22783
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1658-L1660
|
22792
22784
|
|
22793
22785
|
|
22794
22786
|
|
@@ -22813,7 +22805,7 @@ class Function(SharedObject, PrintableCommon):
|
|
22813
22805
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L1079
|
22814
22806
|
|
22815
22807
|
Implementation:
|
22816
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
22808
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1662-L1664
|
22817
22809
|
|
22818
22810
|
|
22819
22811
|
|
@@ -22838,7 +22830,7 @@ class Function(SharedObject, PrintableCommon):
|
|
22838
22830
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L1085
|
22839
22831
|
|
22840
22832
|
Implementation:
|
22841
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
22833
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1058-L1058
|
22842
22834
|
|
22843
22835
|
|
22844
22836
|
|
@@ -22863,7 +22855,7 @@ class Function(SharedObject, PrintableCommon):
|
|
22863
22855
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L1090
|
22864
22856
|
|
22865
22857
|
Implementation:
|
22866
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
22858
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1060-L1060
|
22867
22859
|
|
22868
22860
|
|
22869
22861
|
|
@@ -22888,7 +22880,7 @@ class Function(SharedObject, PrintableCommon):
|
|
22888
22880
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L1095
|
22889
22881
|
|
22890
22882
|
Implementation:
|
22891
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
22883
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1062-L1062
|
22892
22884
|
|
22893
22885
|
|
22894
22886
|
|
@@ -22913,7 +22905,7 @@ class Function(SharedObject, PrintableCommon):
|
|
22913
22905
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L1100
|
22914
22906
|
|
22915
22907
|
Implementation:
|
22916
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
22908
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1064-L1064
|
22917
22909
|
|
22918
22910
|
|
22919
22911
|
|
@@ -22938,7 +22930,7 @@ class Function(SharedObject, PrintableCommon):
|
|
22938
22930
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L1137
|
22939
22931
|
|
22940
22932
|
Implementation:
|
22941
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
22933
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1281-L1288
|
22942
22934
|
|
22943
22935
|
|
22944
22936
|
|
@@ -22966,7 +22958,7 @@ class Function(SharedObject, PrintableCommon):
|
|
22966
22958
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L1144
|
22967
22959
|
|
22968
22960
|
Implementation:
|
22969
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
22961
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1638-L1640
|
22970
22962
|
|
22971
22963
|
|
22972
22964
|
|
@@ -23051,7 +23043,7 @@ class Function(SharedObject, PrintableCommon):
|
|
23051
23043
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L1189
|
23052
23044
|
|
23053
23045
|
Implementation:
|
23054
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
23046
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1754-L1760
|
23055
23047
|
|
23056
23048
|
|
23057
23049
|
|
@@ -23074,7 +23066,7 @@ class Function(SharedObject, PrintableCommon):
|
|
23074
23066
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L1192
|
23075
23067
|
|
23076
23068
|
Implementation:
|
23077
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
23069
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1762-L1767
|
23078
23070
|
|
23079
23071
|
|
23080
23072
|
|
@@ -23098,7 +23090,7 @@ class Function(SharedObject, PrintableCommon):
|
|
23098
23090
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L1195
|
23099
23091
|
|
23100
23092
|
Implementation:
|
23101
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
23093
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1769-L1778
|
23102
23094
|
|
23103
23095
|
|
23104
23096
|
|
@@ -23121,7 +23113,7 @@ class Function(SharedObject, PrintableCommon):
|
|
23121
23113
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L1199
|
23122
23114
|
|
23123
23115
|
Implementation:
|
23124
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
23116
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1742-L1744
|
23125
23117
|
|
23126
23118
|
|
23127
23119
|
|
@@ -23144,7 +23136,7 @@ class Function(SharedObject, PrintableCommon):
|
|
23144
23136
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L1202
|
23145
23137
|
|
23146
23138
|
Implementation:
|
23147
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
23139
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1746-L1748
|
23148
23140
|
|
23149
23141
|
|
23150
23142
|
|
@@ -23169,7 +23161,7 @@ class Function(SharedObject, PrintableCommon):
|
|
23169
23161
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L1212
|
23170
23162
|
|
23171
23163
|
Implementation:
|
23172
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
23164
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1804-L1811
|
23173
23165
|
|
23174
23166
|
|
23175
23167
|
|
@@ -23195,7 +23187,7 @@ class Function(SharedObject, PrintableCommon):
|
|
23195
23187
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L1222
|
23196
23188
|
|
23197
23189
|
Implementation:
|
23198
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
23190
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1822-L1828
|
23199
23191
|
|
23200
23192
|
|
23201
23193
|
|
@@ -23216,7 +23208,7 @@ class Function(SharedObject, PrintableCommon):
|
|
23216
23208
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L1222
|
23217
23209
|
|
23218
23210
|
Implementation:
|
23219
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
23211
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1822-L1828
|
23220
23212
|
|
23221
23213
|
|
23222
23214
|
|
@@ -23240,7 +23232,7 @@ class Function(SharedObject, PrintableCommon):
|
|
23240
23232
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L1217
|
23241
23233
|
|
23242
23234
|
Implementation:
|
23243
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
23235
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1813-L1820
|
23244
23236
|
|
23245
23237
|
|
23246
23238
|
|
@@ -23268,7 +23260,7 @@ class Function(SharedObject, PrintableCommon):
|
|
23268
23260
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L1227
|
23269
23261
|
|
23270
23262
|
Implementation:
|
23271
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
23263
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1830-L1837
|
23272
23264
|
|
23273
23265
|
|
23274
23266
|
|
@@ -23299,7 +23291,7 @@ class Function(SharedObject, PrintableCommon):
|
|
23299
23291
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L1234
|
23300
23292
|
|
23301
23293
|
Implementation:
|
23302
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
23294
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1839-L1855
|
23303
23295
|
|
23304
23296
|
|
23305
23297
|
|
@@ -23333,7 +23325,7 @@ class Function(SharedObject, PrintableCommon):
|
|
23333
23325
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L1242
|
23334
23326
|
|
23335
23327
|
Implementation:
|
23336
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
23328
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1857-L1874
|
23337
23329
|
|
23338
23330
|
|
23339
23331
|
|
@@ -23356,7 +23348,7 @@ class Function(SharedObject, PrintableCommon):
|
|
23356
23348
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L1245
|
23357
23349
|
|
23358
23350
|
Implementation:
|
23359
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
23351
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1903-L1905
|
23360
23352
|
|
23361
23353
|
|
23362
23354
|
|
@@ -23445,7 +23437,7 @@ class Function(SharedObject, PrintableCommon):
|
|
23445
23437
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L101
|
23446
23438
|
|
23447
23439
|
Implementation:
|
23448
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
23440
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L109-L113
|
23449
23441
|
|
23450
23442
|
|
23451
23443
|
|
@@ -23469,7 +23461,7 @@ class Function(SharedObject, PrintableCommon):
|
|
23469
23461
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L111
|
23470
23462
|
|
23471
23463
|
Implementation:
|
23472
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
23464
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L188-L192
|
23473
23465
|
|
23474
23466
|
|
23475
23467
|
|
@@ -23493,7 +23485,7 @@ class Function(SharedObject, PrintableCommon):
|
|
23493
23485
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L105
|
23494
23486
|
|
23495
23487
|
Implementation:
|
23496
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
23488
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L115-L121
|
23497
23489
|
|
23498
23490
|
|
23499
23491
|
|
@@ -23517,7 +23509,7 @@ class Function(SharedObject, PrintableCommon):
|
|
23517
23509
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L70
|
23518
23510
|
|
23519
23511
|
Implementation:
|
23520
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
23512
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L57-L58
|
23521
23513
|
|
23522
23514
|
|
23523
23515
|
|
@@ -23541,7 +23533,7 @@ class Function(SharedObject, PrintableCommon):
|
|
23541
23533
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L81
|
23542
23534
|
|
23543
23535
|
Implementation:
|
23544
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
23536
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L95-L99
|
23545
23537
|
|
23546
23538
|
|
23547
23539
|
|
@@ -23565,7 +23557,7 @@ class Function(SharedObject, PrintableCommon):
|
|
23565
23557
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L91
|
23566
23558
|
|
23567
23559
|
Implementation:
|
23568
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
23560
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L182-L186
|
23569
23561
|
|
23570
23562
|
|
23571
23563
|
|
@@ -23589,7 +23581,7 @@ class Function(SharedObject, PrintableCommon):
|
|
23589
23581
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L85
|
23590
23582
|
|
23591
23583
|
Implementation:
|
23592
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
23584
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L101-L107
|
23593
23585
|
|
23594
23586
|
|
23595
23587
|
|
@@ -23613,7 +23605,7 @@ class Function(SharedObject, PrintableCommon):
|
|
23613
23605
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L75
|
23614
23606
|
|
23615
23607
|
Implementation:
|
23616
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
23608
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L91-L93
|
23617
23609
|
|
23618
23610
|
|
23619
23611
|
|
@@ -23691,7 +23683,7 @@ def Function_jit(*args) -> "casadi::Function":
|
|
23691
23683
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L189
|
23692
23684
|
|
23693
23685
|
Implementation:
|
23694
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
23686
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L293-L305
|
23695
23687
|
|
23696
23688
|
|
23697
23689
|
|
@@ -23743,7 +23735,7 @@ def Function_jit(*args) -> "casadi::Function":
|
|
23743
23735
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L185
|
23744
23736
|
|
23745
23737
|
Implementation:
|
23746
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
23738
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L284-L291
|
23747
23739
|
|
23748
23740
|
|
23749
23741
|
|
@@ -23798,7 +23790,7 @@ def Function_jit(*args) -> "casadi::Function":
|
|
23798
23790
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L189
|
23799
23791
|
|
23800
23792
|
Implementation:
|
23801
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
23793
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L293-L305
|
23802
23794
|
|
23803
23795
|
|
23804
23796
|
|
@@ -23946,7 +23938,7 @@ class FunctionBuffer(_object):
|
|
23946
23938
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L1323
|
23947
23939
|
|
23948
23940
|
Implementation:
|
23949
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
23941
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1943-L1948
|
23950
23942
|
|
23951
23943
|
|
23952
23944
|
|
@@ -23975,7 +23967,7 @@ class FunctionBuffer(_object):
|
|
23975
23967
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L1332
|
23976
23968
|
|
23977
23969
|
Implementation:
|
23978
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
23970
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1949-L1954
|
23979
23971
|
|
23980
23972
|
|
23981
23973
|
|
@@ -23998,7 +23990,7 @@ class FunctionBuffer(_object):
|
|
23998
23990
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L1334
|
23999
23991
|
|
24000
23992
|
Implementation:
|
24001
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
23993
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1962-L1964
|
24002
23994
|
|
24003
23995
|
|
24004
23996
|
|
@@ -24073,7 +24065,7 @@ class FunctionBuffer(_object):
|
|
24073
24065
|
https://github.com/casadi/casadi/blob/develop/casadi/core/function.hpp#L1309
|
24074
24066
|
|
24075
24067
|
Implementation:
|
24076
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#
|
24068
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/function.cpp#L1907-L1915
|
24077
24069
|
|
24078
24070
|
|
24079
24071
|
|
@@ -24503,6 +24495,12 @@ def integrator(*args) -> "casadi::Function":
|
|
24503
24495
|
| | | formulation | |
|
24504
24496
|
| | | [false] | |
|
24505
24497
|
+------------------+-----------------+------------------+------------------+
|
24498
|
+
| external_transfo | OT_VECTORVECTOR | List of external | casadi::Function |
|
24499
|
+
| rm | | _transform | Internal |
|
24500
|
+
| | | instruction | |
|
24501
|
+
| | | arguments. | |
|
24502
|
+
| | | Default: empty | |
|
24503
|
+
+------------------+-----------------+------------------+------------------+
|
24506
24504
|
| fd_method | OT_STRING | Method for | casadi::Function |
|
24507
24505
|
| | | finite | Internal |
|
24508
24506
|
| | | differencing | |
|
@@ -25903,6 +25901,12 @@ def conic(*args) -> "casadi::Function":
|
|
25903
25901
|
| | | evaluation fails | |
|
25904
25902
|
| | | (default true). | |
|
25905
25903
|
+------------------+-----------------+------------------+------------------+
|
25904
|
+
| external_transfo | OT_VECTORVECTOR | List of external | casadi::Function |
|
25905
|
+
| rm | | _transform | Internal |
|
25906
|
+
| | | instruction | |
|
25907
|
+
| | | arguments. | |
|
25908
|
+
| | | Default: empty | |
|
25909
|
+
+------------------+-----------------+------------------+------------------+
|
25906
25910
|
| fd_method | OT_STRING | Method for | casadi::Function |
|
25907
25911
|
| | | finite | Internal |
|
25908
25912
|
| | | differencing | |
|
@@ -27709,6 +27713,12 @@ def nlpsol(*args) -> "casadi::Function":
|
|
27709
27713
|
| | | formulation | |
|
27710
27714
|
| | | [false] | |
|
27711
27715
|
+------------------+-----------------+------------------+------------------+
|
27716
|
+
| external_transfo | OT_VECTORVECTOR | List of external | casadi::Function |
|
27717
|
+
| rm | | _transform | Internal |
|
27718
|
+
| | | instruction | |
|
27719
|
+
| | | arguments. | |
|
27720
|
+
| | | Default: empty | |
|
27721
|
+
+------------------+-----------------+------------------+------------------+
|
27712
27722
|
| fd_method | OT_STRING | Method for | casadi::Function |
|
27713
27723
|
| | | finite | Internal |
|
27714
27724
|
| | | differencing | |
|
@@ -29462,10 +29472,10 @@ def nlpsol_options(*args) -> "std::vector< std::string,std::allocator< std::stri
|
|
29462
29472
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1t5
|
29463
29473
|
|
29464
29474
|
Doc source:
|
29465
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.hpp#
|
29475
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.hpp#L801
|
29466
29476
|
|
29467
29477
|
Implementation:
|
29468
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.cpp#
|
29478
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.cpp#L801-L803
|
29469
29479
|
|
29470
29480
|
|
29471
29481
|
|
@@ -29486,10 +29496,10 @@ def nlpsol_option_type(*args) -> "std::string":
|
|
29486
29496
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1t6
|
29487
29497
|
|
29488
29498
|
Doc source:
|
29489
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.hpp#
|
29499
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.hpp#L805
|
29490
29500
|
|
29491
29501
|
Implementation:
|
29492
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.cpp#
|
29502
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.cpp#L805-L807
|
29493
29503
|
|
29494
29504
|
|
29495
29505
|
|
@@ -29510,10 +29520,10 @@ def nlpsol_option_info(*args) -> "std::string":
|
|
29510
29520
|
Extra doc: https://github.com/casadi/casadi/wiki/L_1t7
|
29511
29521
|
|
29512
29522
|
Doc source:
|
29513
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.hpp#
|
29523
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.hpp#L809
|
29514
29524
|
|
29515
29525
|
Implementation:
|
29516
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.cpp#
|
29526
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/nlpsol.cpp#L809-L811
|
29517
29527
|
|
29518
29528
|
|
29519
29529
|
|
@@ -29844,6 +29854,12 @@ def rootfinder(*args) -> "casadi::Function":
|
|
29844
29854
|
| | | formulation | |
|
29845
29855
|
| | | [false] | |
|
29846
29856
|
+------------------+-----------------+------------------+------------------+
|
29857
|
+
| external_transfo | OT_VECTORVECTOR | List of external | casadi::Function |
|
29858
|
+
| rm | | _transform | Internal |
|
29859
|
+
| | | instruction | |
|
29860
|
+
| | | arguments. | |
|
29861
|
+
| | | Default: empty | |
|
29862
|
+
+------------------+-----------------+------------------+------------------+
|
29847
29863
|
| fd_method | OT_STRING | Method for | casadi::Function |
|
29848
29864
|
| | | finite | Internal |
|
29849
29865
|
| | | differencing | |
|
@@ -31631,6 +31647,12 @@ def dplesol(*args) -> "casadi::DMVector":
|
|
31631
31647
|
| | | greater than | |
|
31632
31648
|
| | | 1-eps_unstable | |
|
31633
31649
|
+------------------+-----------------+------------------+------------------+
|
31650
|
+
| external_transfo | OT_VECTORVECTOR | List of external | casadi::Function |
|
31651
|
+
| rm | | _transform | Internal |
|
31652
|
+
| | | instruction | |
|
31653
|
+
| | | arguments. | |
|
31654
|
+
| | | Default: empty | |
|
31655
|
+
+------------------+-----------------+------------------+------------------+
|
31634
31656
|
| fd_method | OT_STRING | Method for | casadi::Function |
|
31635
31657
|
| | | finite | Internal |
|
31636
31658
|
| | | differencing | |
|
@@ -32405,6 +32427,12 @@ def expmsol(*args) -> "casadi::Function":
|
|
32405
32427
|
| | | evaluation fails | |
|
32406
32428
|
| | | (default true). | |
|
32407
32429
|
+------------------+-----------------+------------------+------------------+
|
32430
|
+
| external_transfo | OT_VECTORVECTOR | List of external | casadi::Function |
|
32431
|
+
| rm | | _transform | Internal |
|
32432
|
+
| | | instruction | |
|
32433
|
+
| | | arguments. | |
|
32434
|
+
| | | Default: empty | |
|
32435
|
+
+------------------+-----------------+------------------+------------------+
|
32408
32436
|
| fd_method | OT_STRING | Method for | casadi::Function |
|
32409
32437
|
| | | finite | Internal |
|
32410
32438
|
| | | differencing | |
|
@@ -33070,6 +33098,12 @@ def interpolant(*args) -> "casadi::Function":
|
|
33070
33098
|
| | | evaluation fails | |
|
33071
33099
|
| | | (default true). | |
|
33072
33100
|
+------------------+-----------------+------------------+------------------+
|
33101
|
+
| external_transfo | OT_VECTORVECTOR | List of external | casadi::Function |
|
33102
|
+
| rm | | _transform | Internal |
|
33103
|
+
| | | instruction | |
|
33104
|
+
| | | arguments. | |
|
33105
|
+
| | | Default: empty | |
|
33106
|
+
+------------------+-----------------+------------------+------------------+
|
33073
33107
|
| fd_method | OT_STRING | Method for | casadi::Function |
|
33074
33108
|
| | | finite | Internal |
|
33075
33109
|
| | | differencing | |
|
@@ -33603,7 +33637,7 @@ class CodeGenerator(_object):
|
|
33603
33637
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L46
|
33604
33638
|
|
33605
33639
|
Implementation:
|
33606
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L35-
|
33640
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L35-L183
|
33607
33641
|
|
33608
33642
|
|
33609
33643
|
|
@@ -33629,7 +33663,7 @@ class CodeGenerator(_object):
|
|
33629
33663
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L49
|
33630
33664
|
|
33631
33665
|
Implementation:
|
33632
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
33666
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L304-L347
|
33633
33667
|
|
33634
33668
|
|
33635
33669
|
|
@@ -33652,7 +33686,7 @@ class CodeGenerator(_object):
|
|
33652
33686
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L57
|
33653
33687
|
|
33654
33688
|
Implementation:
|
33655
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
33689
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L349-L353
|
33656
33690
|
|
33657
33691
|
|
33658
33692
|
|
@@ -33681,7 +33715,7 @@ class CodeGenerator(_object):
|
|
33681
33715
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L66
|
33682
33716
|
|
33683
33717
|
Implementation:
|
33684
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
33718
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L441-L495
|
33685
33719
|
|
33686
33720
|
|
33687
33721
|
|
@@ -33706,7 +33740,7 @@ class CodeGenerator(_object):
|
|
33706
33740
|
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.hpp#L69
|
33707
33741
|
|
33708
33742
|
Implementation:
|
33709
|
-
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#
|
33743
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/code_generator.cpp#L986-L1006
|
33710
33744
|
|
33711
33745
|
|
33712
33746
|
|
@@ -34703,7 +34737,7 @@ def gt(*args) -> "double":
|
|
34703
34737
|
|
34704
34738
|
def ge(*args) -> "double":
|
34705
34739
|
"""
|
34706
|
-
Logical greater or equal to: (x,y) -> x
|
34740
|
+
Logical greater or equal to: (x,y) -> x >= y.
|
34707
34741
|
|
34708
34742
|
::
|
34709
34743
|
|
@@ -41721,6 +41755,50 @@ def detect_simple_bounds(*args) -> "std::vector< casadi_int > &, casadi::MX &, c
|
|
41721
41755
|
|
41722
41756
|
"""
|
41723
41757
|
return _casadi.detect_simple_bounds(*args)
|
41758
|
+
|
41759
|
+
def external_transform(*args) -> "casadi::Function":
|
41760
|
+
"""
|
41761
|
+
[INTERNAL]
|
41762
|
+
|
41763
|
+
::
|
41764
|
+
|
41765
|
+
external_transform(str name, str op, Function f, dict opts) -> Function
|
41766
|
+
|
41767
|
+
Apply a transformation defined externally.
|
41768
|
+
|
41769
|
+
Parameters:
|
41770
|
+
-----------
|
41771
|
+
|
41772
|
+
name:
|
41773
|
+
Name of the shared library
|
41774
|
+
|
41775
|
+
op:
|
41776
|
+
Name of the operation
|
41777
|
+
|
41778
|
+
f:
|
41779
|
+
Function to transform
|
41780
|
+
|
41781
|
+
opts:
|
41782
|
+
Options
|
41783
|
+
|
41784
|
+
::
|
41785
|
+
|
41786
|
+
Extra doc: https://github.com/casadi/casadi/wiki/L_27i
|
41787
|
+
|
41788
|
+
|
41789
|
+
|
41790
|
+
|
41791
|
+
Doc source:
|
41792
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/tools.hpp#L45
|
41793
|
+
|
41794
|
+
Implementation:
|
41795
|
+
https://github.com/casadi/casadi/blob/develop/casadi/core/tools.cpp#L45-L77
|
41796
|
+
|
41797
|
+
|
41798
|
+
|
41799
|
+
|
41800
|
+
"""
|
41801
|
+
return _casadi.external_transform(*args)
|
41724
41802
|
class NlpBuilder(PrintableCommon):
|
41725
41803
|
"""
|
41726
41804
|
[INTERNAL]
|