/* Copyright (c) 2015 Microsoft Corporation. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Author: Leonardo de Moura */ #include #include "util/sstream.h" #include "util/sexpr/option_declarations.h" #include "kernel/for_each_fn.h" #include "kernel/type_checker.h" #include "library/replace_visitor.h" #include "library/util.h" #include "library/reducible.h" #include "library/normalize.h" #include "library/class.h" #include "library/type_context.h" #include "library/congr_lemma_manager.h" #include "library/projection.h" #include "library/tactic/goal.h" #include "library/blast/expr.h" #include "library/blast/state.h" #include "library/blast/blast.h" #include "library/blast/assumption.h" #include "library/blast/intros.h" #include "library/blast/blast_exception.h" #ifndef LEAN_DEFAULT_BLAST_MAX_DEPTH #define LEAN_DEFAULT_BLAST_MAX_DEPTH 128 #endif #ifndef LEAN_DEFAULT_BLAST_INIT_DEPTH #define LEAN_DEFAULT_BLAST_INIT_DEPTH 1 #endif #ifndef LEAN_DEFAULT_BLAST_INC_DEPTH #define LEAN_DEFAULT_BLAST_INC_DEPTH 5 #endif namespace lean { namespace blast { static name * g_prefix = nullptr; static name * g_tmp_prefix = nullptr; /* Options */ static name * g_blast_max_depth = nullptr; static name * g_blast_init_depth = nullptr; static name * g_blast_inc_depth = nullptr; unsigned get_blast_max_depth(options const & o) { return o.get_unsigned(*g_blast_max_depth, LEAN_DEFAULT_BLAST_MAX_DEPTH); } unsigned get_blast_init_depth(options const & o) { return o.get_unsigned(*g_blast_init_depth, LEAN_DEFAULT_BLAST_INIT_DEPTH); } unsigned get_blast_inc_depth(options const & o) { return o.get_unsigned(*g_blast_inc_depth, LEAN_DEFAULT_BLAST_INC_DEPTH); } class blastenv { friend class scope_assignment; typedef std::vector tmp_type_context_pool; typedef std::unique_ptr tmp_type_context_ptr; environment m_env; io_state m_ios; name_generator m_ngen; tmp_local_generator m_tmp_local_generator; list m_initial_context; // for setting type_context local instances name_set m_lemma_hints; name_set m_unfold_hints; name_map m_uvar2uref; // map global universe metavariables to blast uref's name_map> m_mvar2meta_mref; // map global metavariables to blast mref's name_predicate m_not_reducible_pred; name_predicate m_class_pred; name_predicate m_instance_pred; name_map m_projection_info; state m_curr_state; // current state std::vector m_choice_points; tmp_type_context_pool m_tmp_ctx_pool; tmp_type_context_ptr m_tmp_ctx; // for app_builder and congr_lemma_manager app_builder m_app_builder; fun_info_manager m_fun_info_manager; congr_lemma_manager m_congr_lemma_manager; /* options */ unsigned m_max_depth; unsigned m_init_depth; unsigned m_inc_depth; class tctx : public type_context { blastenv & m_benv; std::vector m_stack; public: tctx(blastenv & benv): type_context(benv.m_env, benv.m_ios, benv.m_tmp_local_generator), m_benv(benv) {} virtual bool is_extra_opaque(name const & n) const { // TODO(Leo): class and instances return m_benv.m_not_reducible_pred(n) || m_benv.m_projection_info.contains(n); } virtual bool is_uvar(level const & l) const { return blast::is_uref(l); } virtual bool is_mvar(expr const & e) const { return blast::is_mref(e); } virtual optional get_assignment(level const & u) const { if (auto v = m_benv.m_curr_state.get_uref_assignment(u)) return some_level(*v); else return none_level(); } virtual optional get_assignment(expr const & m) const { if (auto v = m_benv.m_curr_state.get_mref_assignment(m)) return some_expr(*v); else return none_expr(); } virtual void update_assignment(level const & u, level const & v) { m_benv.m_curr_state.assign_uref(u, v); } virtual void update_assignment(expr const & m, expr const & v) { m_benv.m_curr_state.assign_mref(m, v); } virtual bool validate_assignment(expr const & m, buffer const & locals, expr const & v) { // We must check // 1. All href in new_v are in the context of m. // 2. The context of any (unassigned) mref in new_v must be a subset of the context of m. // If it is not we force it to be. // 3. Any (non tmp) local constant occurring in new_v occurs in locals // 4. m does not occur in new_v state & s = m_benv.m_curr_state; metavar_decl const * d = s.get_metavar_decl(m); lean_assert(d); bool ok = true; for_each(v, [&](expr const & e, unsigned) { if (!ok) return false; // stop search if (is_href(e)) { if (!d->contains_href(e)) { ok = false; // failed 1 return false; } } else if (is_local(e) && !is_tmp_local(e)) { if (std::all_of(locals.begin(), locals.end(), [&](expr const & a) { return mlocal_name(a) != mlocal_name(e); })) { ok = false; // failed 3 return false; } } else if (is_mref(e)) { if (m == e) { ok = false; // failed 4 return false; } s.restrict_mref_context_using(e, m); // enforce 2 return false; } return true; }); return ok; } /** \brief Return the type of a local constant (local or not). \remark This method allows the customer to store the type of local constants in a different place. */ virtual expr infer_local(expr const & e) const { if (is_href(e)) { branch const & b = m_benv.m_curr_state.get_main_branch(); hypothesis const * h = b.get(e); lean_assert(h); return h->get_type(); } else { return mlocal_type(e); } } virtual expr infer_metavar(expr const & m) const { // Remark: we do not tolerate external meta-variables here. lean_assert(is_mref(m)); state const & s = m_benv.m_curr_state; metavar_decl const * d = s.get_metavar_decl(m); lean_assert(d); return d->get_type(); } virtual level mk_uvar() { return mk_fresh_uref(); } virtual expr mk_mvar(expr const & type) { return m_benv.m_curr_state.mk_metavar(type); } virtual void push() { // TODO(Leo): we only need to save the assignment and metavar_decls. m_stack.push_back(m_benv.m_curr_state); } virtual void pop() { m_benv.m_curr_state = m_stack.back(); m_stack.pop_back(); } virtual void commit() { m_stack.pop_back(); } }; class to_blast_expr_fn : public replace_visitor { type_checker m_tc; state & m_state; // We map each metavariable to a metavariable application and the mref associated with it. name_map & m_uvar2uref; name_map> & m_mvar2meta_mref; name_map & m_local2href; level to_blast_level(level const & l) { level lhs; switch (l.kind()) { case level_kind::Succ: return mk_succ(to_blast_level(succ_of(l))); case level_kind::Zero: return mk_level_zero(); case level_kind::Param: return mk_param_univ(param_id(l)); case level_kind::Global: return mk_global_univ(global_id(l)); case level_kind::Max: lhs = to_blast_level(max_lhs(l)); return mk_max(lhs, to_blast_level(max_rhs(l))); case level_kind::IMax: lhs = to_blast_level(imax_lhs(l)); return mk_imax(lhs, to_blast_level(imax_rhs(l))); case level_kind::Meta: if (auto r = m_uvar2uref.find(meta_id(l))) { return *r; } else { level uref = mk_fresh_uref(); m_uvar2uref.insert(meta_id(l), uref); return uref; } } lean_unreachable(); } virtual expr visit_sort(expr const & e) { return mk_sort(to_blast_level(sort_level(e))); } virtual expr visit_macro(expr const & e) { buffer new_args; for (unsigned i = 0; i < macro_num_args(e); i++) { new_args.push_back(visit(macro_arg(e, i))); } return mk_macro(macro_def(e), new_args.size(), new_args.data()); } virtual expr visit_constant(expr const & e) { levels new_ls = map(const_levels(e), [&](level const & l) { return to_blast_level(l); }); return mk_constant(const_name(e), new_ls); } virtual expr visit_var(expr const & e) { return mk_var(var_idx(e)); } void throw_unsupported_metavar_occ(expr const & e) { // TODO(Leo): improve error message throw blast_exception("'blast' tactic failed, goal contains a " "meta-variable application that is not supported", e); } expr mk_mref_app(expr const & mref, unsigned nargs, expr const * args) { lean_assert(is_mref(mref)); buffer new_args; for (unsigned i = 0; i < nargs; i++) { new_args.push_back(visit(args[i])); } return mk_app(mref, new_args.size(), new_args.data()); } expr visit_meta_app(expr const & e) { lean_assert(is_meta(e)); buffer args; expr const & mvar = get_app_args(e, args); if (pair const * meta_mref = m_mvar2meta_mref.find(mlocal_name(mvar))) { lean_assert(is_meta(meta_mref->first)); lean_assert(is_mref(meta_mref->second)); buffer decl_args; get_app_args(meta_mref->first, decl_args); if (decl_args.size() > args.size()) throw_unsupported_metavar_occ(e); // Make sure the the current metavariable application prefix matches the one // found before. for (unsigned i = 0; i < decl_args.size(); i++) { if (is_local(decl_args[i])) { if (!is_local(args[i]) || mlocal_name(args[i]) != mlocal_name(decl_args[i])) throw_unsupported_metavar_occ(e); } else if (decl_args[i] != args[i]) { throw_unsupported_metavar_occ(e); } } return mk_mref_app(meta_mref->second, args.size() - decl_args.size(), args.data() + decl_args.size()); } else { unsigned i = 0; hypothesis_idx_buffer ctx; // Find prefix that contains only closed terms. for (; i < args.size(); i++) { if (!closed(args[i])) break; if (!is_local(args[i])) { // Ignore arguments that are not local constants. // In the blast tactic we only support higher-order patterns. continue; } expr const & l = args[i]; if (!std::all_of(args.begin(), args.begin() + i, [&](expr const & prev) { return mlocal_name(prev) != mlocal_name(l); })) { // Local has already been processed continue; } auto href = m_local2href.find(mlocal_name(l)); if (!href) { // One of the arguments is a local constant that is not in m_local2href throw_unsupported_metavar_occ(e); } ctx.push_back(href_index(*href)); } unsigned prefix_sz = i; expr aux = e; for (; i < args.size(); i++) aux = app_fn(aux); lean_assert(is_meta(aux)); expr type = visit(m_tc.infer(aux).first); expr mref = m_state.mk_metavar(ctx, type); m_mvar2meta_mref.insert(mlocal_name(mvar), mk_pair(e, mref)); return mk_mref_app(mref, args.size() - prefix_sz, args.data() + prefix_sz); } } virtual expr visit_meta(expr const & e) { return visit_meta_app(e); } virtual expr visit_local(expr const & e) { if (auto r = m_local2href.find(mlocal_name(e))) return * r; else throw blast_exception("blast tactic failed, ill-formed input goal", e); } virtual expr visit_app(expr const & e) { if (is_meta(e)) { return visit_meta_app(e); } else { expr f = visit(app_fn(e)); return mk_app(f, visit(app_arg(e))); } } virtual expr visit_lambda(expr const & e) { expr d = visit(binding_domain(e)); return mk_lambda(binding_name(e), d, visit(binding_body(e)), binding_info(e)); } virtual expr visit_pi(expr const & e) { expr d = visit(binding_domain(e)); return mk_pi(binding_name(e), d, visit(binding_body(e)), binding_info(e)); } public: to_blast_expr_fn(environment const & env, state & s, name_map & uvar2uref, name_map> & mvar2meta_mref, name_map & local2href): m_tc(env), m_state(s), m_uvar2uref(uvar2uref), m_mvar2meta_mref(mvar2meta_mref), m_local2href(local2href) {} }; state to_state(goal const & g) { state s; type_checker_ptr norm_tc = mk_type_checker(m_env, name_generator(*g_prefix), UnfoldReducible); name_map local2href; to_blast_expr_fn to_blast_expr(m_env, s, m_uvar2uref, m_mvar2meta_mref, local2href); buffer hs; g.get_hyps(hs); for (expr const & h : hs) { lean_assert(is_local(h)); expr type = normalize(*norm_tc, mlocal_type(h)); expr new_type = to_blast_expr(type); expr href = s.add_hypothesis(local_pp_name(h), new_type, h); local2href.insert(mlocal_name(h), href); } expr target = normalize(*norm_tc, g.get_type()); expr new_target = to_blast_expr(target); s.set_target(new_target); lean_assert(s.check_invariant()); return s; } tctx m_tctx; void save_initial_context() { branch const & b = m_curr_state.get_main_branch(); hypothesis_idx_buffer hidxs; b.get_sorted_hypotheses(hidxs); buffer ctx; for (unsigned hidx : hidxs) { ctx.push_back(mk_href(hidx)); } m_initial_context = to_list(ctx); } void set_options(options const & o) { m_max_depth = get_blast_max_depth(o); m_init_depth = get_blast_init_depth(o); m_inc_depth = get_blast_inc_depth(o); } bool next_choice_point() { if (m_choice_points.empty()) return false; m_curr_state = m_choice_points.back(); m_choice_points.pop_back(); return true; } enum status { NoAction, ClosedBranch, Continue }; optional activate_hypothesis() { return m_curr_state.get_main_branch().activate_hypothesis(); } pair next_action() { if (intros_action()) { return mk_pair(Continue, expr()); } else if (activate_hypothesis()) { // TODO(Leo): we should probably eagerly simplify the activated hypothesis. return mk_pair(Continue, expr()); } else if (auto pr = assumption_action()) { return mk_pair(ClosedBranch, *pr); } else { // TODO(Leo): add more actions... return mk_pair(NoAction, expr()); } } optional resolve(expr pr) { while (m_curr_state.has_proof_steps()) { proof_step s = m_curr_state.top_proof_step(); if (auto new_pr = s.resolve(m_curr_state, pr)) { pr = *new_pr; m_curr_state.pop_proof_step(); } else { return none_expr(); // continue the search } } return some_expr(pr); // closed all branches } optional search_upto(unsigned depth) { while (true) { if (m_curr_state.get_depth() > depth) { // maximum depth reached if (!next_choice_point()) { return none_expr(); } } auto s = next_action(); switch (s.first) { case NoAction: if (!next_choice_point()) return none_expr(); break; case ClosedBranch: if (auto pr = resolve(s.second)) return pr; break; case Continue: break; } } } optional search() { state s = m_curr_state; unsigned d = m_init_depth; while (d <= m_max_depth) { if (auto r = search_upto(d)) return r; d += m_inc_depth; m_curr_state = s; m_choice_points.clear(); } return none_expr(); } struct to_tactic_proof_fn : public replace_visitor { state & m_state; branch & m_branch; virtual expr visit_local(expr const & e) { if (is_href(e)) { hypothesis const * h = m_branch.get(e); lean_assert(h); expr v = h->get_value(); return visit(v); } else { return replace_visitor::visit_local(e); } } virtual expr visit_meta(expr const & e) { lean_assert(is_mref(e)); expr v = m_state.instantiate_urefs_mrefs(e); if (v == e) { return v; } else { return replace_visitor::visit_meta(v); } } to_tactic_proof_fn(state & s): m_state(s), m_branch(s.get_main_branch()) {} }; expr to_tactic_proof(expr const & pr) { // TODO(Leo): when a proof is found we must // 1- (done) remove all occurrences of href's from pr // 2- (done) replace mrefs with their assignments, // and convert unassigned meta-variables back into // tactic meta-variables. // 3- The external tactic meta-variables that have been instantiated // by blast must also be communicated back to the tactic framework. return to_tactic_proof_fn(m_curr_state)(pr); } public: blastenv(environment const & env, io_state const & ios, list const & ls, list const & ds): m_env(env), m_ios(ios), m_ngen(*g_prefix), m_lemma_hints(to_name_set(ls)), m_unfold_hints(to_name_set(ds)), m_not_reducible_pred(mk_not_reducible_pred(env)), m_class_pred(mk_class_pred(env)), m_instance_pred(mk_instance_pred(env)), m_tmp_ctx(mk_tmp_type_context()), m_app_builder(*m_tmp_ctx), m_fun_info_manager(*m_tmp_ctx), m_congr_lemma_manager(m_app_builder, m_fun_info_manager), m_tctx(*this) { init_uref_mref_href_idxs(); set_options(m_ios.get_options()); } ~blastenv() { for (auto ctx : m_tmp_ctx_pool) delete ctx; } void init_state(goal const & g) { m_curr_state = to_state(g); save_initial_context(); m_tctx.set_local_instances(m_initial_context); m_tmp_ctx->set_local_instances(m_initial_context); } optional operator()(goal const & g) { init_state(g); if (auto r = search()) { return some_expr(to_tactic_proof(*r)); } else { return none_expr(); } } environment const & get_env() const { return m_env; } io_state const & get_ios() const { return m_ios; } state & get_curr_state() { return m_curr_state; } bool is_reducible(name const & n) const { if (m_not_reducible_pred(n)) return false; return !m_projection_info.contains(n); } projection_info const * get_projection_info(name const & n) const { return m_projection_info.find(n); } expr mk_fresh_local(expr const & type, binder_info const & bi) { return m_tmp_local_generator.mk_tmp_local(type, bi); } expr whnf(expr const & e) { return m_tctx.whnf(e); } expr infer_type(expr const & e) { return m_tctx.infer(e); } bool is_prop(expr const & e) { return m_tctx.is_prop(e); } bool is_def_eq(expr const & e1, expr const & e2) { return m_tctx.is_def_eq(e1, e2); } optional mk_class_instance(expr const & e) { return m_tctx.mk_class_instance(e); } tmp_type_context * mk_tmp_type_context(); void recycle_tmp_type_context(tmp_type_context * ctx) { lean_assert(ctx); ctx->clear(); m_tmp_ctx_pool.push_back(ctx); } optional mk_congr_lemma_for_simp(expr const & fn, unsigned num_args) { return m_congr_lemma_manager.mk_congr_simp(fn, num_args); } optional mk_congr_lemma_for_simp(expr const & fn) { return m_congr_lemma_manager.mk_congr_simp(fn); } fun_info get_fun_info(expr const & fn) { return m_fun_info_manager.get(fn); } fun_info get_fun_info(expr const & fn, unsigned nargs) { return m_fun_info_manager.get(fn, nargs); } /** \brief Convert an external expression into a blast expression It converts meta-variables to blast meta-variables, and ensures the expressions are maximally shared. \remark This procedure should only be used for debugging purposes. */ expr internalize(expr const & e) { name_map local2href; return to_blast_expr_fn(m_env, m_curr_state, m_uvar2uref, m_mvar2meta_mref, local2href)(e); } app_builder & get_app_builder() { return m_app_builder; } }; LEAN_THREAD_PTR(blastenv, g_blastenv); struct scope_blastenv { blastenv * m_prev_blastenv; public: scope_blastenv(blastenv & c):m_prev_blastenv(g_blastenv) { g_blastenv = &c; } ~scope_blastenv() { g_blastenv = m_prev_blastenv; } }; environment const & env() { lean_assert(g_blastenv); return g_blastenv->get_env(); } io_state const & ios() { lean_assert(g_blastenv); return g_blastenv->get_ios(); } app_builder & get_app_builder() { lean_assert(g_blastenv); return g_blastenv->get_app_builder(); } state & curr_state() { lean_assert(g_blastenv); return g_blastenv->get_curr_state(); } bool is_reducible(name const & n) { lean_assert(g_blastenv); return g_blastenv->is_reducible(n); } projection_info const * get_projection_info(name const & n) { lean_assert(g_blastenv); return g_blastenv->get_projection_info(n); } expr whnf(expr const & e) { lean_assert(g_blastenv); return g_blastenv->whnf(e); } expr infer_type(expr const & e) { lean_assert(g_blastenv); return g_blastenv->infer_type(e); } bool is_prop(expr const & e) { lean_assert(g_blastenv); return g_blastenv->is_prop(e); } bool is_def_eq(expr const & e1, expr const & e2) { lean_assert(g_blastenv); return g_blastenv->is_def_eq(e1, e2); } optional mk_class_instance(expr const & e) { lean_assert(g_blastenv); return g_blastenv->mk_class_instance(e); } expr mk_fresh_local(expr const & type, binder_info const & bi) { lean_assert(g_blastenv); return g_blastenv->mk_fresh_local(type, bi); } optional mk_congr_lemma_for_simp(expr const & fn, unsigned num_args) { lean_assert(g_blastenv); return g_blastenv->mk_congr_lemma_for_simp(fn, num_args); } optional mk_congr_lemma_for_simp(expr const & fn) { lean_assert(g_blastenv); return g_blastenv->mk_congr_lemma_for_simp(fn); } fun_info get_fun_info(expr const & fn) { lean_assert(g_blastenv); return g_blastenv->get_fun_info(fn); } fun_info get_fun_info(expr const & fn, unsigned nargs) { lean_assert(g_blastenv); return g_blastenv->get_fun_info(fn, nargs); } void display_curr_state() { curr_state().display(env(), ios()); display("\n"); } void display_expr(expr const & e) { ios().get_diagnostic_channel() << e << "\n"; } void display(char const * msg) { ios().get_diagnostic_channel() << msg; } void display(sstream const & msg) { ios().get_diagnostic_channel() << msg.str(); } scope_assignment::scope_assignment():m_keep(false) { lean_assert(g_blastenv); g_blastenv->m_tctx.push(); } scope_assignment::~scope_assignment() { if (m_keep) g_blastenv->m_tctx.commit(); else g_blastenv->m_tctx.pop(); } void scope_assignment::commit() { m_keep = true; } struct scope_debug::imp { scoped_expr_caching m_scope1; blastenv m_benv; scope_blastenv m_scope2; imp(environment const & env, io_state const & ios): m_scope1(true), m_benv(env, ios, list(), list()), m_scope2(m_benv) { expr aux_mvar = mk_metavar("dummy_mvar", mk_true()); goal aux_g(aux_mvar, mlocal_type(aux_mvar)); m_benv.init_state(aux_g); } }; scope_debug::scope_debug(environment const & env, io_state const & ios): m_imp(new imp(env, ios)) { } scope_debug::~scope_debug() {} /** \brief We need to redefine infer_local and infer_metavar, because the types of hypotheses and blast meta-variables are stored in the blast state */ class tmp_tctx : public tmp_type_context { public: tmp_tctx(environment const & env, io_state const & ios, tmp_local_generator & gen): tmp_type_context(env, ios, gen) {} /** \brief Return the type of a local constant (local or not). \remark This method allows the customer to store the type of local constants in a different place. */ virtual expr infer_local(expr const & e) const { state const & s = curr_state(); if (is_href(e)) { branch const & b = s.get_main_branch(); hypothesis const * h = b.get(e); lean_assert(h); return h->get_type(); } else { return mlocal_type(e); } } virtual expr infer_metavar(expr const & m) const { if (is_mref(m)) { state const & s = curr_state(); metavar_decl const * d = s.get_metavar_decl(m); lean_assert(d); return d->get_type(); } else { // The type of external meta-variables is encoded in the usual way. // In temporary type_context objects, we may have temporary meta-variables // created by external modules (e.g., simplifier and app_builder). return mlocal_type(m); } } }; tmp_type_context * blastenv::mk_tmp_type_context() { tmp_type_context * r; if (m_tmp_ctx_pool.empty()) { r = new tmp_tctx(m_env, m_ios, m_tmp_local_generator); } else { r = m_tmp_ctx_pool.back(); m_tmp_ctx_pool.pop_back(); } r->set_local_instances(m_initial_context); return r; } blast_tmp_type_context::blast_tmp_type_context(unsigned num_umeta, unsigned num_emeta) { lean_assert(g_blastenv); m_ctx = g_blastenv->mk_tmp_type_context(); m_ctx->clear(); m_ctx->set_next_uvar_idx(num_umeta); m_ctx->set_next_mvar_idx(num_emeta); } blast_tmp_type_context::blast_tmp_type_context() { lean_assert(g_blastenv); m_ctx = g_blastenv->mk_tmp_type_context(); } blast_tmp_type_context::~blast_tmp_type_context() { g_blastenv->recycle_tmp_type_context(m_ctx); } expr internalize(expr const & e) { lean_assert(g_blastenv); return g_blastenv->internalize(e); } } optional blast_goal(environment const & env, io_state const & ios, list const & ls, list const & ds, goal const & g) { scoped_expr_caching scope1(true); blast::blastenv b(env, ios, ls, ds); blast::scope_blastenv scope2(b); return b(g); } void initialize_blast() { blast::g_prefix = new name(name::mk_internal_unique_name()); blast::g_tmp_prefix = new name(name::mk_internal_unique_name()); blast::g_blast_max_depth = new name{"blast", "max_depth"}; blast::g_blast_init_depth = new name{"blast", "init_depth"}; blast::g_blast_inc_depth = new name{"blast", "inc_depth"}; register_unsigned_option(*blast::g_blast_max_depth, LEAN_DEFAULT_BLAST_MAX_DEPTH, "(blast) max search depth for blast"); register_unsigned_option(*blast::g_blast_init_depth, LEAN_DEFAULT_BLAST_INIT_DEPTH, "(blast) initial search depth for blast (remark: blast uses iteration deepening)"); register_unsigned_option(*blast::g_blast_inc_depth, LEAN_DEFAULT_BLAST_INC_DEPTH, "(blast) search depth increment for blast (remark: blast uses iteration deepening)"); } void finalize_blast() { delete blast::g_prefix; delete blast::g_tmp_prefix; } }