logger.debug("LogProb (slow evaluation, debug only) = " + perf);
}
void doQuickEvaluation(Candidate candidate) {
loggerPrintIterationNumber(candidate);
ProbabilityDeltaCalculator calc = new ProbabilityDeltaCalculator(tree, symbolTransitions, candidate);
double perf = calc.getLogLikelihood();
logger.debug("LogProb = " + perf);
candidate.setLogProbability(perf);
results.put(candidate, new Integer(iterationNumber++));
}