fix error message

issue#70
Houtan Bastani 2010-06-10 15:16:54 +02:00
parent ed88a8e528
commit 6b0b5a8065
1 changed files with 1 additions and 1 deletions

View File

@ -323,7 +323,7 @@ EstimatedParamsStatement::EstimatedParamsStatement(const vector<EstimationParams
if (dynamic_cast<NumConstNode *>(it->mean)->isNumConstNodeEqualTo(0.5) &&
dynamic_cast<NumConstNode *>(it->std)->isNumConstNodeEqualTo(0.5))
{
cerr << "The prior density is not defined for the beta distribution when the mean = standard deviation = 0.5." << endl;
cerr << "ERROR: The prior density is not defined for the beta distribution when the mean = standard deviation = 0.5." << endl;
exit(EXIT_FAILURE);
}
}