2015-11-09 03:18:40 +00:00
|
|
|
/*
|
|
|
|
Copyright (c) 2015 Microsoft Corporation. All rights reserved.
|
|
|
|
Released under Apache 2.0 license as described in the file LICENSE.
|
|
|
|
|
|
|
|
Author: Leonardo de Moura
|
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace lean {
|
|
|
|
namespace blast {
|
2015-11-13 18:54:29 +00:00
|
|
|
/** \brief Introduce upto \c max hypotheses.
|
|
|
|
Return false if there is nothing to introduce, that is, target is not a Pi-type. */
|
|
|
|
bool intros_action(unsigned max);
|
|
|
|
/** \brief Keep introducing until target is not a Pi-type. */
|
2015-11-09 03:18:40 +00:00
|
|
|
bool intros_action();
|
|
|
|
}}
|