Skip to content

Commit

Permalink
update micm api
Browse files Browse the repository at this point in the history
  • Loading branch information
boulderdaze committed May 13, 2024
1 parent 3256dac commit d250c5a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmake/dependencies.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ endif()
if (MUSICA_ENABLE_MICM)
FetchContent_Declare(micm
GIT_REPOSITORY https://github.com/NCAR/micm.git
GIT_TAG 2a5cd4e11a6973974f3c584dfa9841d70e0a42d5
GIT_TAG 8c4cff0d
)
FetchContent_MakeAvailable(micm)
endif()
Expand Down
2 changes: 1 addition & 1 deletion src/micm/micm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ void MICM::create(const std::string &config_path, Error *error) {
solver_parameters_ = std::make_unique<micm::SolverParameters>(
solver_config.GetSolverParams());
auto params =
micm::RosenbrockSolverParameters::three_stage_rosenbrock_parameters(
micm::RosenbrockSolverParameters::ThreeStageRosenbrockParameters(
NUM_GRID_CELLS);
params.ignore_unused_species_ = true;
solver_ = std::make_unique<micm::RosenbrockSolver<>>(
Expand Down

0 comments on commit d250c5a

Please sign in to comment.