lean4-htt/src/library/module.h
2021-01-12 09:51:14 -08:00

19 lines
510 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 <lean/serializer.h>
#include <lean/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);
}