@kha The runtime folder includes what is needed to link a standalone Lean program. It is still contains some unnecessary files. We will be able to remove them after we release Lean4.
16 lines
434 B
C++
16 lines
434 B
C++
/*
|
|
Copyright (c) 2014 Microsoft Corporation. All rights reserved.
|
|
Released under Apache 2.0 license as described in the file LICENSE.
|
|
|
|
Author: Leonardo de Moura
|
|
*/
|
|
#pragma once
|
|
#include "runtime/int64.h"
|
|
#include "kernel/environment.h"
|
|
|
|
namespace lean {
|
|
environment update_fingerprint(environment const & env, unsigned h);
|
|
uint64 get_fingerprint(environment const & env);
|
|
void initialize_fingerprint();
|
|
void finalize_fingerprint();
|
|
}
|