2014-11-30 05:34:26 +00:00
|
|
|
/*
|
|
|
|
Copyright (c) 2014 Microsoft Corporation. All rights reserved.
|
|
|
|
Released under Apache 2.0 license as described in the file LICENSE.
|
|
|
|
|
|
|
|
Author: Leonardo de Moura
|
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "library/tactic/tactic.h"
|
|
|
|
|
|
|
|
namespace lean {
|
2015-02-25 21:58:39 +00:00
|
|
|
expr mk_assert_tactic_expr(name const & id, expr const & e);
|
2014-11-30 05:34:26 +00:00
|
|
|
tactic assert_tactic(elaborate_fn const & elab, name const & id, expr const & e);
|
|
|
|
void initialize_assert_tactic();
|
|
|
|
void finalize_assert_tactic();
|
|
|
|
}
|