2014-06-17 20:11:06 +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
|
2014-06-17 20:35:31 +00:00
|
|
|
#include "frontends/lean/cmd_table.h"
|
2014-06-17 20:11:06 +00:00
|
|
|
namespace lean {
|
2014-06-18 00:15:38 +00:00
|
|
|
class parser;
|
2014-06-17 20:35:31 +00:00
|
|
|
void register_calc_cmds(cmd_table & r);
|
2014-06-18 00:15:38 +00:00
|
|
|
expr parse_calc(parser & p);
|
2014-09-23 00:30:29 +00:00
|
|
|
void initialize_calc();
|
|
|
|
void finalize_calc();
|
2014-06-17 20:11:06 +00:00
|
|
|
}
|