Adds -t im-pf to see which inferences occur in the final proof. Must be used with proofs and --proof-annotate.
if (getInferenceId(args[0], id))
{
d_annotationRuleIds << id;
+ // Use e.g. `--check-proofs --proof-annotate -t im-pf` to see a list of
+ // inference that appear in the final proof.
+ Trace("im-pf") << "(inference-pf " << id << " " << pn->getResult()
+ << ")" << std::endl;
+ Trace("im-pf-assert")
+ << "(assert " << pn->getResult() << ") ; " << id << std::endl;
}
}
}