18 lines
484 B
C++
18 lines
484 B
C++
/*
|
|
Copyright (c) 2014 Microsoft Corporation. All rights reserved.
|
|
Released under Apache 2.0 license as described in the file LICENSE.
|
|
|
|
Authors: Leonardo de Moura, Gabriel Ebner, Sebastian Ullrich
|
|
*/
|
|
#pragma once
|
|
#include <string>
|
|
#include <iostream>
|
|
#include <utility>
|
|
#include <vector>
|
|
#include "runtime/optional.h"
|
|
#include "kernel/environment.h"
|
|
|
|
namespace lean {
|
|
/** \brief Store module using \c env. */
|
|
void write_module(environment const & env, std::string const & olean_fn);
|
|
}
|