fix(library/blast/intros): corner case

This commit is contained in:
Leonardo de Moura 2015-11-13 15:25:55 -08:00
parent 6c038626f8
commit 33036befc6

View file

@ -24,6 +24,8 @@ struct intros_proof_step_cell : public proof_step_cell {
};
bool intros_action(unsigned max) {
if (max == 0)
return true;
state & s = curr_state();
expr target = whnf(s.get_target());
if (!is_pi(target))