2014-07-08 16:24:56 +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 "util/sexpr/options.h"
|
|
|
|
namespace lean {
|
2014-11-09 19:24:19 +00:00
|
|
|
name const & get_pp_implicit_name();
|
2014-09-08 15:30:08 +00:00
|
|
|
name const & get_pp_coercions_option_name();
|
2014-08-07 02:13:09 +00:00
|
|
|
name const & get_pp_full_names_option_name();
|
2014-10-02 17:54:20 +00:00
|
|
|
name const & get_pp_universes_option_name();
|
2014-10-19 15:40:56 +00:00
|
|
|
name const & get_pp_notation_option_name();
|
2014-10-30 20:28:25 +00:00
|
|
|
name const & get_pp_metavar_args_name();
|
2014-11-09 19:04:22 +00:00
|
|
|
name const & get_pp_purify_metavars_name();
|
2014-08-07 02:13:09 +00:00
|
|
|
|
2014-07-08 16:24:56 +00:00
|
|
|
unsigned get_pp_max_depth(options const & opts);
|
|
|
|
unsigned get_pp_max_steps(options const & opts);
|
|
|
|
bool get_pp_notation(options const & opts);
|
|
|
|
bool get_pp_implicit(options const & opts);
|
2014-09-08 15:30:08 +00:00
|
|
|
bool get_pp_coercions(options const & opts);
|
2014-07-09 08:12:36 +00:00
|
|
|
bool get_pp_universes(options const & opts);
|
2014-07-10 14:55:19 +00:00
|
|
|
bool get_pp_full_names(options const & opts);
|
2014-07-25 18:03:54 +00:00
|
|
|
bool get_pp_private_names(options const & opts);
|
2014-07-31 23:44:57 +00:00
|
|
|
bool get_pp_metavar_args(options const & opts);
|
2014-09-09 21:10:20 +00:00
|
|
|
bool get_pp_beta(options const & opts);
|
2014-11-09 19:04:22 +00:00
|
|
|
bool get_pp_purify_metavars(options const & opts);
|
2014-07-27 16:41:25 +00:00
|
|
|
list<options> const & get_distinguishing_pp_options();
|
2014-09-22 17:27:48 +00:00
|
|
|
|
|
|
|
void initialize_pp_options();
|
|
|
|
void finalize_pp_options();
|
2014-07-08 16:24:56 +00:00
|
|
|
}
|