Skip to content

Commit 4429e46

Browse files
committed
Move new compilation flags higher in documentation
1 parent b77db20 commit 4429e46

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

cmdstanpy/model.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -104,18 +104,18 @@ def __init__(
104104
:param exe_file: Path to compiled executable file.
105105
:param force_compile: Whether or not to force recompilation if
106106
executable file already exists.
107-
:param stanc_options: Options for stanc compiler. Note, this
108-
will override the `stanc_optimizations` if in conflict.
109-
:param cpp_options: Options for C++ compiler. Note, this will
110-
override the `multithreading` option if in conflict.
111-
:param user_header: A path to a header file to include during C++
112-
compilation.
113107
:param multithreading: Enables multithreading in a Stan model.
114108
Equivalent to `cpp_options = {"STAN_THREADS": "TRUE"}`.
115109
Defaults to False.
116110
:param stanc_optimizations: Enables O1 optimizations in the
117111
stanc compiler. Equivalent to `stanc_options = {"O": 1}`.
118112
Defaults to False.
113+
:param stanc_options: Options for stanc compiler. Note, this
114+
will override the `stanc_optimizations` if in conflict.
115+
:param cpp_options: Options for C++ compiler. Note, this will
116+
override the `multithreading` option if in conflict.
117+
:param user_header: A path to a header file to include during C++
118+
compilation.
119119
"""
120120
self._name = ''
121121
self._stan_file = None

0 commit comments

Comments
 (0)