We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Currently no check is performed to ensure consistency of vector types, mainly Vector and SVector (see #207).
Vector
SVector
I think that the return type of the function should be checked and the input interval should be converted accordingly. Namely for roots(f, X)
roots(f, X)
f(X)::T
X::S
X
T
T == SVector
X == Vector
We could also check the jacobian, if it is given explicitly.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently no check is performed to ensure consistency of vector types, mainly
Vector
andSVector
(see #207).I think that the return type of the function should be checked and the input interval should be converted accordingly.
Namely for
roots(f, X)
f(X)::T
,X::S
-> convertX
toT
(typicallyT == SVector
andX == Vector
)We could also check the jacobian, if it is given explicitly.
The text was updated successfully, but these errors were encountered: