3ab0e07ba9
This commit also removes the fake_simplifier. It doesn't work anymore because simp is now a reserved word.
13 lines
272 B
C++
13 lines
272 B
C++
/*
|
|
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
|
|
#include "kernel/expr.h"
|
|
|
|
namespace lean {
|
|
class parser;
|
|
expr parse_simp_tactic(parser & p);
|
|
}
|