try {
MeanVariance MCAns = EOCBayesMC(mcsamples);
/* Get the t-statistic and report the result. */
double t = (EOCBayesAns - MCAns.SampleMean())
/ MCAns.SampleMeanDeviation();
if (verbose)
System.out.printf(
"EOCBayes Answer=%f, MonteCarlo Answer=%f, t=%f\n",
EOCBayesAns, MCAns, t);
return t;