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
There's an unresolved typename declared for trace_gen_quad_form, which therefore is never used even when all inputs are double. Here's the definition:
trace_gen_quad_form
template <int RD, int CD, int RA, int CA, typename TB, int RB, int CB> inline double trace_gen_quad_form(const Eigen::Matrix<double, RD, CD> &D, const Eigen::Matrix<double, RA, CA> &A, const Eigen::Matrix<double, RB, CB> &B)
Removing typename TB allows that double specialization to be used.
typename TB
v3.1.0
The text was updated successfully, but these errors were encountered:
This one will be squashed by #1628 right?
Sorry, something went wrong.
Good to know, I hadn't seen that! :)
Successfully merging a pull request may close this issue.
Description
There's an unresolved typename declared for
trace_gen_quad_form
, which therefore is never used even when all inputs are double. Here's the definition:Removing
typename TB
allows that double specialization to be used.Current Version:
v3.1.0
The text was updated successfully, but these errors were encountered: