if (options.logTranslation()>0) {
final TranslationLogger logger = options.logTranslation()==1 ? new MemoryLogger(annotated, bounds) : new FileLogger(annotated, bounds);
final BooleanAccumulator circuit = FOL2BoolTranslator.translate(annotated, interpreter, logger);
log = logger.log();
if (circuit.isShortCircuited()) {
throw new TrivialFormulaException(annotated.node(), bounds, circuit.op().shortCircuit(), log);
} else if (circuit.size()==0) {
throw new TrivialFormulaException(annotated.node(), bounds, circuit.op().identity(), log);
}
return generateSBP(circuit, interpreter, breaker);
} else {