lean2/src/library/tactic/generalize_tactic.h
Leonardo de Moura 79d0347721 feat(library/tactic): add generalize tactic, closes #34
Remark: the intros tactic has been added in a different commit: 7d0100a340
2014-10-23 22:40:15 -07:00

14 lines
376 B
C++

/*
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/elaborate.h"
namespace lean {
tactic generalize_tactic(elaborate_fn const & elab, expr const & e);
void initialize_generalize_tactic();
void finalize_generalize_tactic();
}