Skip to content

Commit

Permalink
Merge pull request #97 from NCAR/patch-solver-merge
Browse files Browse the repository at this point in the history
add template parameter to Rosenbrock Solver test
  • Loading branch information
boulderdaze committed Jun 26, 2023
2 parents ecfba5f + 994dddb commit 6106d99
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions test/integration/chapman.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
#include <micm/solver/state.hpp>
#include <micm/system/phase.hpp>
#include <micm/system/system.hpp>
#include <micm/util/matrix.hpp>
#include <utility>
#include <vector>

Expand All @@ -26,9 +27,9 @@ TEST(ChapmanIntegration, CanBuildChapmanSystemUsingConfig)

micm::SolverParameters& solver_params = *solver_params_ptr;

micm::RosenbrockSolver solver{ solver_params.system_,
std::move(solver_params.processes_),
micm::RosenbrockSolverParameters{} };
micm::RosenbrockSolver<micm::Matrix> solver{ solver_params.system_,
std::move(solver_params.processes_),
micm::RosenbrockSolverParameters{} };

micm::State state = solver.GetState();

Expand Down

0 comments on commit 6106d99

Please sign in to comment.