From 18a98876ee622737c8b4ed99f15f7157d3f6e1a0 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 25 Feb 2026 19:12:30 +0000 Subject: [PATCH 1/2] Initial plan From 76cebb478b51fc2b2f9397bec649fc99f8501c26 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 25 Feb 2026 19:13:48 +0000 Subject: [PATCH 2/2] Fix error message in check_coefs.cc to list all valid mtype options Co-authored-by: The9Cat <25960766+The9Cat@users.noreply.github.com> --- utils/ICs/check_coefs.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/ICs/check_coefs.cc b/utils/ICs/check_coefs.cc index 5039d8251..0cb9c17d0 100644 --- a/utils/ICs/check_coefs.cc +++ b/utils/ICs/check_coefs.cc @@ -494,7 +494,7 @@ main(int ac, char **av) } else { if (myid==0) std::cout << "No EmpCylSL EmpModel named <" << mtype << ">, valid types are: " - << "Exponential, Gaussian, Plummer" << std::endl; + << "Exponential, ExpSphere, Gaussian, Plummer, Power" << std::endl; MPI_Finalize(); return -1; }