in smt2patch/src/lib.rs [83:93]
fn make_clause_name(&mut self, term: &Term) -> Symbol {
let mut qid = String::new();
if let Term::Forall { term, .. } = term {
if let Some(s) = Self::get_quantifier_name(term) {
qid = format!("!{}", s.0);
}
}
let s = format!("{}{}{}", CLAUSE, self.clause_count, qid);
self.clause_count += 1;
Symbol(s)
}