aboutsummaryrefslogtreecommitdiff
path: root/src/ParamCheck.c
diff options
context:
space:
mode:
authorschnetter <schnetter@b2a53a04-0f4f-0410-87ed-f9f25ced00cf>2006-05-07 22:09:58 +0000
committerschnetter <schnetter@b2a53a04-0f4f-0410-87ed-f9f25ced00cf>2006-05-07 22:09:58 +0000
commit06ab7ee0d3a166433e1ea86d5eb2868d0fff6b54 (patch)
tree0614e1d18041591cd88c63c33d72afec6ac78b0f /src/ParamCheck.c
parentf254b589c08bd1e846594a60e9043f39263ea9d4 (diff)
Print info about the solver in the initial bin, not in the paramcheck
bin. The paramcheck bin is executed while recovering, and it is confusing to see solver messages while recovering. git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinInitialData/TwoPunctures/trunk@56 b2a53a04-0f4f-0410-87ed-f9f25ced00cf
Diffstat (limited to 'src/ParamCheck.c')
-rw-r--r--src/ParamCheck.c10
1 files changed, 3 insertions, 7 deletions
diff --git a/src/ParamCheck.c b/src/ParamCheck.c
index 6759e20..6931691 100644
--- a/src/ParamCheck.c
+++ b/src/ParamCheck.c
@@ -18,15 +18,11 @@ TwoPunctures_ParamCheck (CCTK_ARGUMENTS)
{
DECLARE_CCTK_ARGUMENTS;
DECLARE_CCTK_PARAMETERS;
+
if (use_sources)
{
- CCTK_INFO("Solving for BH-NS");
if (! CCTK_IsFunctionAliased ("Set_Rho_ADM"))
- CCTK_WARN(0, "I found no (aliased) function for matter sources, but "
- "was said to use matter.");
+ CCTK_WARN (0, "Matter sources have been enabled, "
+ "but there is no aliased function for matter sources.");
}
- else
- CCTK_INFO("Solving for BHs");
- CCTK_VInfo(CCTK_THORNSTRING, "The two puncture-masses are %.16e and %.16e.\n",
- par_m_minus, par_m_plus);
}