lean2/src/library/blast/options.h

24 lines
606 B
C
Raw Normal View History

/*
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 "util/sexpr/options.h"
namespace lean {
namespace blast {
/** \brief Blast configuration object. */
struct config {
unsigned m_max_depth;
unsigned m_init_depth;
unsigned m_inc_depth;
bool m_trace;
config(options const & o);
};
2015-11-18 20:59:53 +00:00
bool get_blast_trace(options const & o);
void initialize_options();
void finalize_options();
}}