Skip to content
Snippets Groups Projects
Commit bc917cb8 authored by Ian Bell's avatar Ian Bell
Browse files

Even more explicit return type

parent c93784d2
No related branches found
No related tags found
No related merge requests found
......@@ -138,7 +138,8 @@ auto linsolve(const A &a, const B& b) {
}
template<class Model, class Scalar, class VecType>
auto get_drhovecdp_Tsat(const Model& model, const Scalar &T, const VecType& rhovecL, const VecType& rhovecV) {
std::tuple< Eigen::Matrix<Scalar, Eigen::Dynamic, Eigen::Dynamic>, Eigen::Matrix<Scalar, Eigen::Dynamic, Eigen::Dynamic>>
get_drhovecdp_Tsat(const Model& model, const Scalar &T, const VecType& rhovecL, const VecType& rhovecV) {
//tic = timeit.default_timer();
using id = IsochoricDerivatives<Model, Scalar, VecType>;
Eigen::Matrix<Scalar, Eigen::Dynamic, Eigen::Dynamic> Hliq = id::build_Psi_Hessian_autodiff(model, T, rhovecL).eval();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment