Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix mistake in the parse_free docstring #118

Merged
merged 1 commit into from
Feb 6, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 4 additions & 4 deletions opty/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,10 +205,10 @@ def parse_free(free, n, q, N):
-------
states : ndarray, shape(n, N)
The array of n states through N time steps.
specified_values : ndarray, shape(r, N) or shape(N,), or None
The array of r specified inputs through N time steps.
constant_values : ndarray, shape(q,)
The array of q constants.
specified_values : ndarray, shape(q, N) or shape(N,), or None
The array of q specified inputs through N time steps.
constant_values : ndarray, shape(r,)
The array of r constants.

"""

Expand Down