26 #include "collocation.hpp"
33 "Fixed-step implicit Runge-Kutta integrator ODE/DAE integrator based \n"
34 "on collocation schemes\n"
36 "The method is still under development\n"
38 "Extra doc: https://github.com/casadi/casadi/wiki/L_234 \n"
41 ">List of available options\n"
43 "+---------------------------+-----------+----------------------------------+\n"
44 "| Id | Type | Description |\n"
45 "+===========================+===========+==================================+\n"
46 "| collocation_scheme | OT_STRING | Collocation scheme: |\n"
47 "| | | radau|legendre |\n"
48 "+---------------------------+-----------+----------------------------------+\n"
49 "| interpolation_order | OT_INT | Order of the interpolating |\n"
50 "| | | polynomials |\n"
51 "+---------------------------+-----------+----------------------------------+\n"
52 "| number_of_finite_elements | OT_INT | Target number of finite |\n"
53 "| | | elements. The actual number may |\n"
54 "| | | be higher to accommodate all |\n"
55 "| | | output times |\n"
56 "+---------------------------+-----------+----------------------------------+\n"
57 "| rootfinder | OT_STRING | An implicit function solver |\n"
58 "+---------------------------+-----------+----------------------------------+\n"
59 "| rootfinder_options | OT_DICT | Options to be passed to the NLP |\n"
61 "+---------------------------+-----------+----------------------------------+\n"
62 "| simplify | OT_BOOL | Implement as MX Function |\n"
63 "| | | (codegeneratable/serializable) |\n"
64 "| | | default: false |\n"
65 "+---------------------------+-----------+----------------------------------+\n"
66 "| simplify_options | OT_DICT | Any options to pass to |\n"
67 "| | | simplified form Function |\n"
68 "| | | constructor |\n"
69 "+---------------------------+-----------+----------------------------------+\n"
static const std::string meta_doc
A documentation string.