You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 6, 2024. It is now read-only.
where argnum 9 is specified although the function only has 8 arguments. This results in the warning:
jax/_src/api_util.py:165: SyntaxWarning: Jitted function has static_argnums=(0, 1, 9), but only accepts 8 positional arguments.
This warning will be replaced by an error after 2022-08-20 at the earliest.
trajax/tvlqr.py:98: FutureWarning: The sym_pos argument to solve() is deprecated and will be removed in a future JAX release. Use assume_a='pos' instead.
The text was updated successfully, but these errors were encountered:
Trajax uses deprecated Jax APIs/behavior which result in warnings being emitted in two locations.
trajax/trajax/optimizers.py
Line 755 in a14d248
where argnum 9 is specified although the function only has 8 arguments. This results in the warning:
trajax/trajax/tvlqr.py
Line 98 in a14d248
which raises the following warning
The text was updated successfully, but these errors were encountered: