chore(library/blast/state): trace msg

This commit is contained in:
Leonardo de Moura 2015-12-09 07:13:19 -08:00
parent 273f6fc04c
commit aed0c7cccf

View file

@ -844,7 +844,7 @@ optional<unsigned> state::select_hypothesis_to_activate() {
void state::activate_hypothesis(hypothesis_idx hidx) {
lean_trace(name({"blast", "search"}),
hypothesis const & h = get_hypothesis_decl(hidx);
tout() << "activate: " << h.get_name() << " : " << ppb(h.get_type()) << "\n";);
tout() << "activate " << h.get_name() << " : " << ppb(h.get_type()) << "\n";);
m_branch.m_active.insert(hidx);
update_indices(hidx);
}