2015-11-10 19:03:54 +00:00
|
|
|
/*
|
|
|
|
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 {
|
2015-11-13 21:05:20 +00:00
|
|
|
/** \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-10 19:03:54 +00:00
|
|
|
void initialize_options();
|
|
|
|
void finalize_options();
|
|
|
|
}}
|