33 "Implements simple newton iterations to solve an implicit function.\n"
35 "Extra doc: https://github.com/casadi/casadi/wiki/L_236 \n"
38 ">List of available options\n"
40 "+-----------------+-----------+--------------------------------------------+\n"
41 "| Id | Type | Description |\n"
42 "+=================+===========+============================================+\n"
43 "| abstol | OT_DOUBLE | Stopping criterion tolerance on max(|F|) |\n"
44 "+-----------------+-----------+--------------------------------------------+\n"
45 "| abstolStep | OT_DOUBLE | Stopping criterion tolerance on step size |\n"
46 "+-----------------+-----------+--------------------------------------------+\n"
47 "| line_search | OT_BOOL | Enable line-search (default: true) |\n"
48 "+-----------------+-----------+--------------------------------------------+\n"
49 "| max_iter | OT_INT | Maximum number of Newton iterations to |\n"
50 "| | | perform before returning. |\n"
51 "+-----------------+-----------+--------------------------------------------+\n"
52 "| print_iteration | OT_BOOL | Print information about each iteration |\n"
53 "+-----------------+-----------+--------------------------------------------+\n"
static const std::string meta_doc
A documentation string.