fix(library/blast/forward/pattern): missing case

This commit is contained in:
Leonardo de Moura 2015-11-26 12:51:36 -08:00
parent fdd442bd38
commit 05477d34bb

View file

@ -447,6 +447,8 @@ struct mk_hi_lemma_fn {
} else if (!mvars.empty()) {
// a subsumes all children candidates
return candidate_set(candidate(a, mvars));
} else {
return candidate_set();
}
}
}}