lean4-htt/src/library/module.h
2021-07-22 18:59:39 +02:00

18 lines
481 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/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);
}