15 lines
496 B
C++
15 lines
496 B
C++
/*
|
|
Copyright (c) 2016 Microsoft Corporation. All rights reserved.
|
|
Released under Apache 2.0 license as described in the file LICENSE.
|
|
|
|
Author: Leonardo de Moura
|
|
*/
|
|
#pragma once
|
|
#include "library/metavar_context.h"
|
|
#include "library/equations_compiler/equations.h"
|
|
namespace lean {
|
|
expr compile_equations(environment & env, options const & opts, metavar_context & mctx, local_context const & lctx,
|
|
expr const & eqns);
|
|
void initialize_compiler();
|
|
void finalize_compiler();
|
|
}
|