Merge branch 'main' into main
commit
b8eccf3a8e
@ -0,0 +1,87 @@
|
|||||||
|
import GameServer.Commands
|
||||||
|
|
||||||
|
/-! ## Definitions -/
|
||||||
|
|
||||||
|
DefinitionDoc Even as "Even"
|
||||||
|
"
|
||||||
|
`even n` ist definiert als `∃ r, a = 2 * r`.
|
||||||
|
Die Definition kann man mit `unfold even at *` einsetzen.
|
||||||
|
## Eigenschaften
|
||||||
|
|
||||||
|
* Mathlib Doc: [#Even](https://leanprover-community.github.io/mathlib4_docs/Mathlib/Algebra/Parity.html#Even)"
|
||||||
|
|
||||||
|
DefinitionDoc Odd as "Odd"
|
||||||
|
"
|
||||||
|
`odd n` ist definiert als `∃ r, a = 2 * r + 1`.
|
||||||
|
Die Definition kann man mit `unfold odd at *` einsetzen.
|
||||||
|
|
||||||
|
* Mathlib Doc: [Odd](https://leanprover-community.github.io/mathlib4_docs/Mathlib/Algebra/Parity.html#Odd)"
|
||||||
|
|
||||||
|
DefinitionDoc Injective as "Injective"
|
||||||
|
"
|
||||||
|
`Injective f` ist definiert als
|
||||||
|
|
||||||
|
```
|
||||||
|
∀ a b, f a = f b → a = b
|
||||||
|
```
|
||||||
|
definiert.
|
||||||
|
|
||||||
|
* Mathlib Doc: [Injective](https://leanprover-community.github.io/mathlib4_docs/Mathlib/Init/Function.html#Function.Injective)"
|
||||||
|
|
||||||
|
DefinitionDoc Surjective as "Surjective"
|
||||||
|
"
|
||||||
|
`Surjective f` ist definiert als
|
||||||
|
|
||||||
|
```
|
||||||
|
∀ a, (∃ b, f a = b)
|
||||||
|
```
|
||||||
|
|
||||||
|
* Mathlib Doc: [Surjective](https://leanprover-community.github.io/mathlib4_docs/Mathlib/Init/Function.html#Function.Surjective)"
|
||||||
|
|
||||||
|
DefinitionDoc Bijective as "Bijective"
|
||||||
|
"
|
||||||
|
|
||||||
|
## Eigenschaften
|
||||||
|
|
||||||
|
* Mathlib Doc: [#Bijective](https://leanprover-community.github.io/mathlib4_docs/Mathlib/Init/Function.html#Function.Bijective)
|
||||||
|
"
|
||||||
|
|
||||||
|
DefinitionDoc LeftInverse as "LeftInverse"
|
||||||
|
"
|
||||||
|
|
||||||
|
## Eigenschaften
|
||||||
|
|
||||||
|
* Mathlib Doc: [#LeftInverse](https://leanprover-community.github.io/mathlib4_docs/Mathlib/Init/Function.html#Function.LeftInverse)
|
||||||
|
"
|
||||||
|
|
||||||
|
DefinitionDoc RightInverse as "RightInverse"
|
||||||
|
"
|
||||||
|
|
||||||
|
## Eigenschaften
|
||||||
|
|
||||||
|
* Mathlib Doc: [#RightInverse](https://leanprover-community.github.io/mathlib4_docs/Mathlib/Init/Logic.html#RightInverse)
|
||||||
|
"
|
||||||
|
|
||||||
|
DefinitionDoc StrictMono as "StrictMono"
|
||||||
|
"
|
||||||
|
`StrictMono f` ist definiert als
|
||||||
|
|
||||||
|
```
|
||||||
|
∀ a b, a < b → f a < f b
|
||||||
|
```
|
||||||
|
|
||||||
|
## Eigenschaften
|
||||||
|
|
||||||
|
* Mathlib Doc: [#StrictMono](https://leanprover-community.github.io/mathlib4_docs/Mathlib/Order/Monotone/Basic.html#StrictMono)
|
||||||
|
|
||||||
|
"
|
||||||
|
|
||||||
|
DefinitionDoc Symbol.Subset as "⊆" "
|
||||||
|
|
||||||
|
Auf Mengen (`Set`) ist `A ⊆ B` als `∀x, x ∈ A → x ∈ B` implementiert.
|
||||||
|
"
|
||||||
|
|
||||||
|
DefinitionDoc Set.Nonempty as "Nonempty" "
|
||||||
|
|
||||||
|
`A.Nonemty` ist als `∃ x, x ∈ A` definiert.
|
||||||
|
"
|
||||||
@ -0,0 +1 @@
|
|||||||
|
build
|
||||||
@ -1,73 +0,0 @@
|
|||||||
// Lean compiler output
|
|
||||||
// Module: NNG
|
|
||||||
// Imports: Init GameServer.Commands NNG.Levels.Tutorial NNG.Levels.Addition NNG.Levels.Multiplication NNG.Levels.Power NNG.Levels.Function NNG.Levels.Proposition NNG.Levels.AdvProposition NNG.Levels.AdvAddition NNG.Levels.AdvMultiplication NNG.Levels.Inequality
|
|
||||||
#include <lean/lean.h>
|
|
||||||
#if defined(__clang__)
|
|
||||||
#pragma clang diagnostic ignored "-Wunused-parameter"
|
|
||||||
#pragma clang diagnostic ignored "-Wunused-label"
|
|
||||||
#elif defined(__GNUC__) && !defined(__CLANG__)
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-parameter"
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-label"
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-but-set-variable"
|
|
||||||
#endif
|
|
||||||
#ifdef __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif
|
|
||||||
lean_object* initialize_Init(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_GameServer_Commands(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_Levels_Tutorial(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_Levels_Addition(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_Levels_Multiplication(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_Levels_Power(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_Levels_Function(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_Levels_Proposition(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_Levels_AdvProposition(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_Levels_AdvAddition(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_Levels_AdvMultiplication(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_Levels_Inequality(uint8_t builtin, lean_object*);
|
|
||||||
static bool _G_initialized = false;
|
|
||||||
LEAN_EXPORT lean_object* initialize_NNG(uint8_t builtin, lean_object* w) {
|
|
||||||
lean_object * res;
|
|
||||||
if (_G_initialized) return lean_io_result_mk_ok(lean_box(0));
|
|
||||||
_G_initialized = true;
|
|
||||||
res = initialize_Init(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_GameServer_Commands(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_Levels_Tutorial(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_Levels_Addition(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_Levels_Multiplication(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_Levels_Power(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_Levels_Function(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_Levels_Proposition(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_Levels_AdvProposition(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_Levels_AdvAddition(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_Levels_AdvMultiplication(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_Levels_Inequality(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
return lean_io_result_mk_ok(lean_box(0));
|
|
||||||
}
|
|
||||||
#ifdef __cplusplus
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
@ -1 +0,0 @@
|
|||||||
7356427851528760174
|
|
||||||
@ -1,33 +0,0 @@
|
|||||||
// Lean compiler output
|
|
||||||
// Module: NNG.Doc.Definitions
|
|
||||||
// Imports: Init GameServer.Commands
|
|
||||||
#include <lean/lean.h>
|
|
||||||
#if defined(__clang__)
|
|
||||||
#pragma clang diagnostic ignored "-Wunused-parameter"
|
|
||||||
#pragma clang diagnostic ignored "-Wunused-label"
|
|
||||||
#elif defined(__GNUC__) && !defined(__CLANG__)
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-parameter"
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-label"
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-but-set-variable"
|
|
||||||
#endif
|
|
||||||
#ifdef __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif
|
|
||||||
lean_object* initialize_Init(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_GameServer_Commands(uint8_t builtin, lean_object*);
|
|
||||||
static bool _G_initialized = false;
|
|
||||||
LEAN_EXPORT lean_object* initialize_NNG_Doc_Definitions(uint8_t builtin, lean_object* w) {
|
|
||||||
lean_object * res;
|
|
||||||
if (_G_initialized) return lean_io_result_mk_ok(lean_box(0));
|
|
||||||
_G_initialized = true;
|
|
||||||
res = initialize_Init(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_GameServer_Commands(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
return lean_io_result_mk_ok(lean_box(0));
|
|
||||||
}
|
|
||||||
#ifdef __cplusplus
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
@ -1 +0,0 @@
|
|||||||
2922655963706979749
|
|
||||||
@ -1,33 +0,0 @@
|
|||||||
// Lean compiler output
|
|
||||||
// Module: NNG.Doc.Lemmas
|
|
||||||
// Imports: Init GameServer.Commands
|
|
||||||
#include <lean/lean.h>
|
|
||||||
#if defined(__clang__)
|
|
||||||
#pragma clang diagnostic ignored "-Wunused-parameter"
|
|
||||||
#pragma clang diagnostic ignored "-Wunused-label"
|
|
||||||
#elif defined(__GNUC__) && !defined(__CLANG__)
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-parameter"
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-label"
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-but-set-variable"
|
|
||||||
#endif
|
|
||||||
#ifdef __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif
|
|
||||||
lean_object* initialize_Init(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_GameServer_Commands(uint8_t builtin, lean_object*);
|
|
||||||
static bool _G_initialized = false;
|
|
||||||
LEAN_EXPORT lean_object* initialize_NNG_Doc_Lemmas(uint8_t builtin, lean_object* w) {
|
|
||||||
lean_object * res;
|
|
||||||
if (_G_initialized) return lean_io_result_mk_ok(lean_box(0));
|
|
||||||
_G_initialized = true;
|
|
||||||
res = initialize_Init(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_GameServer_Commands(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
return lean_io_result_mk_ok(lean_box(0));
|
|
||||||
}
|
|
||||||
#ifdef __cplusplus
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
@ -1 +0,0 @@
|
|||||||
16771103639053061509
|
|
||||||
@ -1,33 +0,0 @@
|
|||||||
// Lean compiler output
|
|
||||||
// Module: NNG.Doc.Tactics
|
|
||||||
// Imports: Init GameServer.Commands
|
|
||||||
#include <lean/lean.h>
|
|
||||||
#if defined(__clang__)
|
|
||||||
#pragma clang diagnostic ignored "-Wunused-parameter"
|
|
||||||
#pragma clang diagnostic ignored "-Wunused-label"
|
|
||||||
#elif defined(__GNUC__) && !defined(__CLANG__)
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-parameter"
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-label"
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-but-set-variable"
|
|
||||||
#endif
|
|
||||||
#ifdef __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif
|
|
||||||
lean_object* initialize_Init(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_GameServer_Commands(uint8_t builtin, lean_object*);
|
|
||||||
static bool _G_initialized = false;
|
|
||||||
LEAN_EXPORT lean_object* initialize_NNG_Doc_Tactics(uint8_t builtin, lean_object* w) {
|
|
||||||
lean_object * res;
|
|
||||||
if (_G_initialized) return lean_io_result_mk_ok(lean_box(0));
|
|
||||||
_G_initialized = true;
|
|
||||||
res = initialize_Init(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_GameServer_Commands(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
return lean_io_result_mk_ok(lean_box(0));
|
|
||||||
}
|
|
||||||
#ifdef __cplusplus
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
@ -1 +0,0 @@
|
|||||||
5348243054589539109
|
|
||||||
@ -1,53 +0,0 @@
|
|||||||
// Lean compiler output
|
|
||||||
// Module: NNG.Levels.Addition
|
|
||||||
// Imports: Init NNG.Levels.Addition.Level_1 NNG.Levels.Addition.Level_2 NNG.Levels.Addition.Level_3 NNG.Levels.Addition.Level_4 NNG.Levels.Addition.Level_5 NNG.Levels.Addition.Level_6
|
|
||||||
#include <lean/lean.h>
|
|
||||||
#if defined(__clang__)
|
|
||||||
#pragma clang diagnostic ignored "-Wunused-parameter"
|
|
||||||
#pragma clang diagnostic ignored "-Wunused-label"
|
|
||||||
#elif defined(__GNUC__) && !defined(__CLANG__)
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-parameter"
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-label"
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-but-set-variable"
|
|
||||||
#endif
|
|
||||||
#ifdef __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif
|
|
||||||
lean_object* initialize_Init(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_Levels_Addition_Level__1(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_Levels_Addition_Level__2(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_Levels_Addition_Level__3(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_Levels_Addition_Level__4(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_Levels_Addition_Level__5(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_Levels_Addition_Level__6(uint8_t builtin, lean_object*);
|
|
||||||
static bool _G_initialized = false;
|
|
||||||
LEAN_EXPORT lean_object* initialize_NNG_Levels_Addition(uint8_t builtin, lean_object* w) {
|
|
||||||
lean_object * res;
|
|
||||||
if (_G_initialized) return lean_io_result_mk_ok(lean_box(0));
|
|
||||||
_G_initialized = true;
|
|
||||||
res = initialize_Init(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_Levels_Addition_Level__1(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_Levels_Addition_Level__2(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_Levels_Addition_Level__3(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_Levels_Addition_Level__4(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_Levels_Addition_Level__5(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_Levels_Addition_Level__6(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
return lean_io_result_mk_ok(lean_box(0));
|
|
||||||
}
|
|
||||||
#ifdef __cplusplus
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
@ -1 +0,0 @@
|
|||||||
2084978910118405033
|
|
||||||
@ -1,37 +0,0 @@
|
|||||||
// Lean compiler output
|
|
||||||
// Module: NNG.Levels.Addition.Level_1
|
|
||||||
// Imports: Init NNG.Metadata NNG.MyNat.Addition
|
|
||||||
#include <lean/lean.h>
|
|
||||||
#if defined(__clang__)
|
|
||||||
#pragma clang diagnostic ignored "-Wunused-parameter"
|
|
||||||
#pragma clang diagnostic ignored "-Wunused-label"
|
|
||||||
#elif defined(__GNUC__) && !defined(__CLANG__)
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-parameter"
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-label"
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-but-set-variable"
|
|
||||||
#endif
|
|
||||||
#ifdef __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif
|
|
||||||
lean_object* initialize_Init(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_Metadata(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_MyNat_Addition(uint8_t builtin, lean_object*);
|
|
||||||
static bool _G_initialized = false;
|
|
||||||
LEAN_EXPORT lean_object* initialize_NNG_Levels_Addition_Level__1(uint8_t builtin, lean_object* w) {
|
|
||||||
lean_object * res;
|
|
||||||
if (_G_initialized) return lean_io_result_mk_ok(lean_box(0));
|
|
||||||
_G_initialized = true;
|
|
||||||
res = initialize_Init(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_Metadata(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_MyNat_Addition(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
return lean_io_result_mk_ok(lean_box(0));
|
|
||||||
}
|
|
||||||
#ifdef __cplusplus
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
@ -1 +0,0 @@
|
|||||||
5269099431713252405
|
|
||||||
@ -1,37 +0,0 @@
|
|||||||
// Lean compiler output
|
|
||||||
// Module: NNG.Levels.Addition.Level_2
|
|
||||||
// Imports: Init NNG.Metadata NNG.MyNat.Addition
|
|
||||||
#include <lean/lean.h>
|
|
||||||
#if defined(__clang__)
|
|
||||||
#pragma clang diagnostic ignored "-Wunused-parameter"
|
|
||||||
#pragma clang diagnostic ignored "-Wunused-label"
|
|
||||||
#elif defined(__GNUC__) && !defined(__CLANG__)
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-parameter"
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-label"
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-but-set-variable"
|
|
||||||
#endif
|
|
||||||
#ifdef __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif
|
|
||||||
lean_object* initialize_Init(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_Metadata(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_MyNat_Addition(uint8_t builtin, lean_object*);
|
|
||||||
static bool _G_initialized = false;
|
|
||||||
LEAN_EXPORT lean_object* initialize_NNG_Levels_Addition_Level__2(uint8_t builtin, lean_object* w) {
|
|
||||||
lean_object * res;
|
|
||||||
if (_G_initialized) return lean_io_result_mk_ok(lean_box(0));
|
|
||||||
_G_initialized = true;
|
|
||||||
res = initialize_Init(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_Metadata(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_MyNat_Addition(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
return lean_io_result_mk_ok(lean_box(0));
|
|
||||||
}
|
|
||||||
#ifdef __cplusplus
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
@ -1 +0,0 @@
|
|||||||
17690234639472501785
|
|
||||||
@ -1,41 +0,0 @@
|
|||||||
// Lean compiler output
|
|
||||||
// Module: NNG.Levels.Addition.Level_3
|
|
||||||
// Imports: Init NNG.Metadata NNG.MyNat.Addition NNG.Levels.Addition.Level_2
|
|
||||||
#include <lean/lean.h>
|
|
||||||
#if defined(__clang__)
|
|
||||||
#pragma clang diagnostic ignored "-Wunused-parameter"
|
|
||||||
#pragma clang diagnostic ignored "-Wunused-label"
|
|
||||||
#elif defined(__GNUC__) && !defined(__CLANG__)
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-parameter"
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-label"
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-but-set-variable"
|
|
||||||
#endif
|
|
||||||
#ifdef __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif
|
|
||||||
lean_object* initialize_Init(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_Metadata(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_MyNat_Addition(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_Levels_Addition_Level__2(uint8_t builtin, lean_object*);
|
|
||||||
static bool _G_initialized = false;
|
|
||||||
LEAN_EXPORT lean_object* initialize_NNG_Levels_Addition_Level__3(uint8_t builtin, lean_object* w) {
|
|
||||||
lean_object * res;
|
|
||||||
if (_G_initialized) return lean_io_result_mk_ok(lean_box(0));
|
|
||||||
_G_initialized = true;
|
|
||||||
res = initialize_Init(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_Metadata(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_MyNat_Addition(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_Levels_Addition_Level__2(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
return lean_io_result_mk_ok(lean_box(0));
|
|
||||||
}
|
|
||||||
#ifdef __cplusplus
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
@ -1 +0,0 @@
|
|||||||
18302928042269315295
|
|
||||||
@ -1,41 +0,0 @@
|
|||||||
// Lean compiler output
|
|
||||||
// Module: NNG.Levels.Addition.Level_4
|
|
||||||
// Imports: Init NNG.Metadata NNG.MyNat.Addition NNG.Levels.Addition.Level_3
|
|
||||||
#include <lean/lean.h>
|
|
||||||
#if defined(__clang__)
|
|
||||||
#pragma clang diagnostic ignored "-Wunused-parameter"
|
|
||||||
#pragma clang diagnostic ignored "-Wunused-label"
|
|
||||||
#elif defined(__GNUC__) && !defined(__CLANG__)
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-parameter"
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-label"
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-but-set-variable"
|
|
||||||
#endif
|
|
||||||
#ifdef __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif
|
|
||||||
lean_object* initialize_Init(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_Metadata(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_MyNat_Addition(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_Levels_Addition_Level__3(uint8_t builtin, lean_object*);
|
|
||||||
static bool _G_initialized = false;
|
|
||||||
LEAN_EXPORT lean_object* initialize_NNG_Levels_Addition_Level__4(uint8_t builtin, lean_object* w) {
|
|
||||||
lean_object * res;
|
|
||||||
if (_G_initialized) return lean_io_result_mk_ok(lean_box(0));
|
|
||||||
_G_initialized = true;
|
|
||||||
res = initialize_Init(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_Metadata(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_MyNat_Addition(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_Levels_Addition_Level__3(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
return lean_io_result_mk_ok(lean_box(0));
|
|
||||||
}
|
|
||||||
#ifdef __cplusplus
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
@ -1 +0,0 @@
|
|||||||
12154535057277385306
|
|
||||||
@ -1,41 +0,0 @@
|
|||||||
// Lean compiler output
|
|
||||||
// Module: NNG.Levels.Addition.Level_5
|
|
||||||
// Imports: Init NNG.Metadata NNG.MyNat.Addition NNG.Levels.Addition.Level_4
|
|
||||||
#include <lean/lean.h>
|
|
||||||
#if defined(__clang__)
|
|
||||||
#pragma clang diagnostic ignored "-Wunused-parameter"
|
|
||||||
#pragma clang diagnostic ignored "-Wunused-label"
|
|
||||||
#elif defined(__GNUC__) && !defined(__CLANG__)
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-parameter"
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-label"
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-but-set-variable"
|
|
||||||
#endif
|
|
||||||
#ifdef __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif
|
|
||||||
lean_object* initialize_Init(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_Metadata(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_MyNat_Addition(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_Levels_Addition_Level__4(uint8_t builtin, lean_object*);
|
|
||||||
static bool _G_initialized = false;
|
|
||||||
LEAN_EXPORT lean_object* initialize_NNG_Levels_Addition_Level__5(uint8_t builtin, lean_object* w) {
|
|
||||||
lean_object * res;
|
|
||||||
if (_G_initialized) return lean_io_result_mk_ok(lean_box(0));
|
|
||||||
_G_initialized = true;
|
|
||||||
res = initialize_Init(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_Metadata(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_MyNat_Addition(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_Levels_Addition_Level__4(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
return lean_io_result_mk_ok(lean_box(0));
|
|
||||||
}
|
|
||||||
#ifdef __cplusplus
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
@ -1 +0,0 @@
|
|||||||
9679823460697032654
|
|
||||||
@ -1,41 +0,0 @@
|
|||||||
// Lean compiler output
|
|
||||||
// Module: NNG.Levels.Addition.Level_6
|
|
||||||
// Imports: Init NNG.Metadata NNG.MyNat.Addition NNG.Levels.Addition.Level_5
|
|
||||||
#include <lean/lean.h>
|
|
||||||
#if defined(__clang__)
|
|
||||||
#pragma clang diagnostic ignored "-Wunused-parameter"
|
|
||||||
#pragma clang diagnostic ignored "-Wunused-label"
|
|
||||||
#elif defined(__GNUC__) && !defined(__CLANG__)
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-parameter"
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-label"
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-but-set-variable"
|
|
||||||
#endif
|
|
||||||
#ifdef __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif
|
|
||||||
lean_object* initialize_Init(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_Metadata(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_MyNat_Addition(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_Levels_Addition_Level__5(uint8_t builtin, lean_object*);
|
|
||||||
static bool _G_initialized = false;
|
|
||||||
LEAN_EXPORT lean_object* initialize_NNG_Levels_Addition_Level__6(uint8_t builtin, lean_object* w) {
|
|
||||||
lean_object * res;
|
|
||||||
if (_G_initialized) return lean_io_result_mk_ok(lean_box(0));
|
|
||||||
_G_initialized = true;
|
|
||||||
res = initialize_Init(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_Metadata(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_MyNat_Addition(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_Levels_Addition_Level__5(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
return lean_io_result_mk_ok(lean_box(0));
|
|
||||||
}
|
|
||||||
#ifdef __cplusplus
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
@ -1 +0,0 @@
|
|||||||
17709657049698654137
|
|
||||||
@ -1,81 +0,0 @@
|
|||||||
// Lean compiler output
|
|
||||||
// Module: NNG.Levels.AdvAddition
|
|
||||||
// Imports: Init NNG.Levels.AdvAddition.Level_1 NNG.Levels.AdvAddition.Level_2 NNG.Levels.AdvAddition.Level_3 NNG.Levels.AdvAddition.Level_4 NNG.Levels.AdvAddition.Level_5 NNG.Levels.AdvAddition.Level_6 NNG.Levels.AdvAddition.Level_7 NNG.Levels.AdvAddition.Level_8 NNG.Levels.AdvAddition.Level_9 NNG.Levels.AdvAddition.Level_10 NNG.Levels.AdvAddition.Level_11 NNG.Levels.AdvAddition.Level_12 NNG.Levels.AdvAddition.Level_13
|
|
||||||
#include <lean/lean.h>
|
|
||||||
#if defined(__clang__)
|
|
||||||
#pragma clang diagnostic ignored "-Wunused-parameter"
|
|
||||||
#pragma clang diagnostic ignored "-Wunused-label"
|
|
||||||
#elif defined(__GNUC__) && !defined(__CLANG__)
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-parameter"
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-label"
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-but-set-variable"
|
|
||||||
#endif
|
|
||||||
#ifdef __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif
|
|
||||||
lean_object* initialize_Init(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_Levels_AdvAddition_Level__1(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_Levels_AdvAddition_Level__2(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_Levels_AdvAddition_Level__3(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_Levels_AdvAddition_Level__4(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_Levels_AdvAddition_Level__5(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_Levels_AdvAddition_Level__6(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_Levels_AdvAddition_Level__7(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_Levels_AdvAddition_Level__8(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_Levels_AdvAddition_Level__9(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_Levels_AdvAddition_Level__10(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_Levels_AdvAddition_Level__11(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_Levels_AdvAddition_Level__12(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_Levels_AdvAddition_Level__13(uint8_t builtin, lean_object*);
|
|
||||||
static bool _G_initialized = false;
|
|
||||||
LEAN_EXPORT lean_object* initialize_NNG_Levels_AdvAddition(uint8_t builtin, lean_object* w) {
|
|
||||||
lean_object * res;
|
|
||||||
if (_G_initialized) return lean_io_result_mk_ok(lean_box(0));
|
|
||||||
_G_initialized = true;
|
|
||||||
res = initialize_Init(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_Levels_AdvAddition_Level__1(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_Levels_AdvAddition_Level__2(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_Levels_AdvAddition_Level__3(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_Levels_AdvAddition_Level__4(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_Levels_AdvAddition_Level__5(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_Levels_AdvAddition_Level__6(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_Levels_AdvAddition_Level__7(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_Levels_AdvAddition_Level__8(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_Levels_AdvAddition_Level__9(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_Levels_AdvAddition_Level__10(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_Levels_AdvAddition_Level__11(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_Levels_AdvAddition_Level__12(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_Levels_AdvAddition_Level__13(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
return lean_io_result_mk_ok(lean_box(0));
|
|
||||||
}
|
|
||||||
#ifdef __cplusplus
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
@ -1 +0,0 @@
|
|||||||
7852774950450280612
|
|
||||||
@ -1,37 +0,0 @@
|
|||||||
// Lean compiler output
|
|
||||||
// Module: NNG.Levels.AdvAddition.Level_1
|
|
||||||
// Imports: Init NNG.Metadata NNG.MyNat.Addition
|
|
||||||
#include <lean/lean.h>
|
|
||||||
#if defined(__clang__)
|
|
||||||
#pragma clang diagnostic ignored "-Wunused-parameter"
|
|
||||||
#pragma clang diagnostic ignored "-Wunused-label"
|
|
||||||
#elif defined(__GNUC__) && !defined(__CLANG__)
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-parameter"
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-label"
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-but-set-variable"
|
|
||||||
#endif
|
|
||||||
#ifdef __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif
|
|
||||||
lean_object* initialize_Init(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_Metadata(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_MyNat_Addition(uint8_t builtin, lean_object*);
|
|
||||||
static bool _G_initialized = false;
|
|
||||||
LEAN_EXPORT lean_object* initialize_NNG_Levels_AdvAddition_Level__1(uint8_t builtin, lean_object* w) {
|
|
||||||
lean_object * res;
|
|
||||||
if (_G_initialized) return lean_io_result_mk_ok(lean_box(0));
|
|
||||||
_G_initialized = true;
|
|
||||||
res = initialize_Init(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_Metadata(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_MyNat_Addition(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
return lean_io_result_mk_ok(lean_box(0));
|
|
||||||
}
|
|
||||||
#ifdef __cplusplus
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
@ -1 +0,0 @@
|
|||||||
9336372057508599589
|
|
||||||
@ -1,37 +0,0 @@
|
|||||||
// Lean compiler output
|
|
||||||
// Module: NNG.Levels.AdvAddition.Level_10
|
|
||||||
// Imports: Init NNG.Metadata NNG.MyNat.Addition
|
|
||||||
#include <lean/lean.h>
|
|
||||||
#if defined(__clang__)
|
|
||||||
#pragma clang diagnostic ignored "-Wunused-parameter"
|
|
||||||
#pragma clang diagnostic ignored "-Wunused-label"
|
|
||||||
#elif defined(__GNUC__) && !defined(__CLANG__)
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-parameter"
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-label"
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-but-set-variable"
|
|
||||||
#endif
|
|
||||||
#ifdef __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif
|
|
||||||
lean_object* initialize_Init(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_Metadata(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_MyNat_Addition(uint8_t builtin, lean_object*);
|
|
||||||
static bool _G_initialized = false;
|
|
||||||
LEAN_EXPORT lean_object* initialize_NNG_Levels_AdvAddition_Level__10(uint8_t builtin, lean_object* w) {
|
|
||||||
lean_object * res;
|
|
||||||
if (_G_initialized) return lean_io_result_mk_ok(lean_box(0));
|
|
||||||
_G_initialized = true;
|
|
||||||
res = initialize_Init(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_Metadata(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_MyNat_Addition(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
return lean_io_result_mk_ok(lean_box(0));
|
|
||||||
}
|
|
||||||
#ifdef __cplusplus
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
@ -1 +0,0 @@
|
|||||||
4008453200266032081
|
|
||||||
@ -1,37 +0,0 @@
|
|||||||
// Lean compiler output
|
|
||||||
// Module: NNG.Levels.AdvAddition.Level_11
|
|
||||||
// Imports: Init NNG.Metadata NNG.MyNat.Addition
|
|
||||||
#include <lean/lean.h>
|
|
||||||
#if defined(__clang__)
|
|
||||||
#pragma clang diagnostic ignored "-Wunused-parameter"
|
|
||||||
#pragma clang diagnostic ignored "-Wunused-label"
|
|
||||||
#elif defined(__GNUC__) && !defined(__CLANG__)
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-parameter"
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-label"
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-but-set-variable"
|
|
||||||
#endif
|
|
||||||
#ifdef __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif
|
|
||||||
lean_object* initialize_Init(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_Metadata(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_MyNat_Addition(uint8_t builtin, lean_object*);
|
|
||||||
static bool _G_initialized = false;
|
|
||||||
LEAN_EXPORT lean_object* initialize_NNG_Levels_AdvAddition_Level__11(uint8_t builtin, lean_object* w) {
|
|
||||||
lean_object * res;
|
|
||||||
if (_G_initialized) return lean_io_result_mk_ok(lean_box(0));
|
|
||||||
_G_initialized = true;
|
|
||||||
res = initialize_Init(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_Metadata(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_MyNat_Addition(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
return lean_io_result_mk_ok(lean_box(0));
|
|
||||||
}
|
|
||||||
#ifdef __cplusplus
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
@ -1 +0,0 @@
|
|||||||
10015610238961501552
|
|
||||||
@ -1,37 +0,0 @@
|
|||||||
// Lean compiler output
|
|
||||||
// Module: NNG.Levels.AdvAddition.Level_12
|
|
||||||
// Imports: Init NNG.Metadata NNG.MyNat.Addition
|
|
||||||
#include <lean/lean.h>
|
|
||||||
#if defined(__clang__)
|
|
||||||
#pragma clang diagnostic ignored "-Wunused-parameter"
|
|
||||||
#pragma clang diagnostic ignored "-Wunused-label"
|
|
||||||
#elif defined(__GNUC__) && !defined(__CLANG__)
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-parameter"
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-label"
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-but-set-variable"
|
|
||||||
#endif
|
|
||||||
#ifdef __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif
|
|
||||||
lean_object* initialize_Init(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_Metadata(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_MyNat_Addition(uint8_t builtin, lean_object*);
|
|
||||||
static bool _G_initialized = false;
|
|
||||||
LEAN_EXPORT lean_object* initialize_NNG_Levels_AdvAddition_Level__12(uint8_t builtin, lean_object* w) {
|
|
||||||
lean_object * res;
|
|
||||||
if (_G_initialized) return lean_io_result_mk_ok(lean_box(0));
|
|
||||||
_G_initialized = true;
|
|
||||||
res = initialize_Init(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_Metadata(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_MyNat_Addition(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
return lean_io_result_mk_ok(lean_box(0));
|
|
||||||
}
|
|
||||||
#ifdef __cplusplus
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
@ -1 +0,0 @@
|
|||||||
5389173862524826914
|
|
||||||
@ -1,37 +0,0 @@
|
|||||||
// Lean compiler output
|
|
||||||
// Module: NNG.Levels.AdvAddition.Level_13
|
|
||||||
// Imports: Init NNG.Metadata NNG.MyNat.Addition
|
|
||||||
#include <lean/lean.h>
|
|
||||||
#if defined(__clang__)
|
|
||||||
#pragma clang diagnostic ignored "-Wunused-parameter"
|
|
||||||
#pragma clang diagnostic ignored "-Wunused-label"
|
|
||||||
#elif defined(__GNUC__) && !defined(__CLANG__)
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-parameter"
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-label"
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-but-set-variable"
|
|
||||||
#endif
|
|
||||||
#ifdef __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif
|
|
||||||
lean_object* initialize_Init(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_Metadata(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_MyNat_Addition(uint8_t builtin, lean_object*);
|
|
||||||
static bool _G_initialized = false;
|
|
||||||
LEAN_EXPORT lean_object* initialize_NNG_Levels_AdvAddition_Level__13(uint8_t builtin, lean_object* w) {
|
|
||||||
lean_object * res;
|
|
||||||
if (_G_initialized) return lean_io_result_mk_ok(lean_box(0));
|
|
||||||
_G_initialized = true;
|
|
||||||
res = initialize_Init(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_Metadata(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_MyNat_Addition(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
return lean_io_result_mk_ok(lean_box(0));
|
|
||||||
}
|
|
||||||
#ifdef __cplusplus
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
@ -1 +0,0 @@
|
|||||||
185528048873600791
|
|
||||||
@ -1,37 +0,0 @@
|
|||||||
// Lean compiler output
|
|
||||||
// Module: NNG.Levels.AdvAddition.Level_2
|
|
||||||
// Imports: Init NNG.Metadata NNG.MyNat.Addition
|
|
||||||
#include <lean/lean.h>
|
|
||||||
#if defined(__clang__)
|
|
||||||
#pragma clang diagnostic ignored "-Wunused-parameter"
|
|
||||||
#pragma clang diagnostic ignored "-Wunused-label"
|
|
||||||
#elif defined(__GNUC__) && !defined(__CLANG__)
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-parameter"
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-label"
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-but-set-variable"
|
|
||||||
#endif
|
|
||||||
#ifdef __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif
|
|
||||||
lean_object* initialize_Init(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_Metadata(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_MyNat_Addition(uint8_t builtin, lean_object*);
|
|
||||||
static bool _G_initialized = false;
|
|
||||||
LEAN_EXPORT lean_object* initialize_NNG_Levels_AdvAddition_Level__2(uint8_t builtin, lean_object* w) {
|
|
||||||
lean_object * res;
|
|
||||||
if (_G_initialized) return lean_io_result_mk_ok(lean_box(0));
|
|
||||||
_G_initialized = true;
|
|
||||||
res = initialize_Init(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_Metadata(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_MyNat_Addition(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
return lean_io_result_mk_ok(lean_box(0));
|
|
||||||
}
|
|
||||||
#ifdef __cplusplus
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
@ -1 +0,0 @@
|
|||||||
3507750203879559481
|
|
||||||
@ -1,37 +0,0 @@
|
|||||||
// Lean compiler output
|
|
||||||
// Module: NNG.Levels.AdvAddition.Level_3
|
|
||||||
// Imports: Init NNG.Metadata NNG.MyNat.Addition
|
|
||||||
#include <lean/lean.h>
|
|
||||||
#if defined(__clang__)
|
|
||||||
#pragma clang diagnostic ignored "-Wunused-parameter"
|
|
||||||
#pragma clang diagnostic ignored "-Wunused-label"
|
|
||||||
#elif defined(__GNUC__) && !defined(__CLANG__)
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-parameter"
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-label"
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-but-set-variable"
|
|
||||||
#endif
|
|
||||||
#ifdef __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif
|
|
||||||
lean_object* initialize_Init(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_Metadata(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_MyNat_Addition(uint8_t builtin, lean_object*);
|
|
||||||
static bool _G_initialized = false;
|
|
||||||
LEAN_EXPORT lean_object* initialize_NNG_Levels_AdvAddition_Level__3(uint8_t builtin, lean_object* w) {
|
|
||||||
lean_object * res;
|
|
||||||
if (_G_initialized) return lean_io_result_mk_ok(lean_box(0));
|
|
||||||
_G_initialized = true;
|
|
||||||
res = initialize_Init(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_Metadata(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_MyNat_Addition(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
return lean_io_result_mk_ok(lean_box(0));
|
|
||||||
}
|
|
||||||
#ifdef __cplusplus
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
@ -1 +0,0 @@
|
|||||||
18314890376638277065
|
|
||||||
@ -1,37 +0,0 @@
|
|||||||
// Lean compiler output
|
|
||||||
// Module: NNG.Levels.AdvAddition.Level_4
|
|
||||||
// Imports: Init NNG.Metadata NNG.MyNat.Addition
|
|
||||||
#include <lean/lean.h>
|
|
||||||
#if defined(__clang__)
|
|
||||||
#pragma clang diagnostic ignored "-Wunused-parameter"
|
|
||||||
#pragma clang diagnostic ignored "-Wunused-label"
|
|
||||||
#elif defined(__GNUC__) && !defined(__CLANG__)
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-parameter"
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-label"
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-but-set-variable"
|
|
||||||
#endif
|
|
||||||
#ifdef __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif
|
|
||||||
lean_object* initialize_Init(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_Metadata(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_MyNat_Addition(uint8_t builtin, lean_object*);
|
|
||||||
static bool _G_initialized = false;
|
|
||||||
LEAN_EXPORT lean_object* initialize_NNG_Levels_AdvAddition_Level__4(uint8_t builtin, lean_object* w) {
|
|
||||||
lean_object * res;
|
|
||||||
if (_G_initialized) return lean_io_result_mk_ok(lean_box(0));
|
|
||||||
_G_initialized = true;
|
|
||||||
res = initialize_Init(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_Metadata(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_MyNat_Addition(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
return lean_io_result_mk_ok(lean_box(0));
|
|
||||||
}
|
|
||||||
#ifdef __cplusplus
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
@ -1 +0,0 @@
|
|||||||
2092365143561121648
|
|
||||||
@ -1,37 +0,0 @@
|
|||||||
// Lean compiler output
|
|
||||||
// Module: NNG.Levels.AdvAddition.Level_5
|
|
||||||
// Imports: Init NNG.Metadata NNG.MyNat.Addition
|
|
||||||
#include <lean/lean.h>
|
|
||||||
#if defined(__clang__)
|
|
||||||
#pragma clang diagnostic ignored "-Wunused-parameter"
|
|
||||||
#pragma clang diagnostic ignored "-Wunused-label"
|
|
||||||
#elif defined(__GNUC__) && !defined(__CLANG__)
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-parameter"
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-label"
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-but-set-variable"
|
|
||||||
#endif
|
|
||||||
#ifdef __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif
|
|
||||||
lean_object* initialize_Init(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_Metadata(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_MyNat_Addition(uint8_t builtin, lean_object*);
|
|
||||||
static bool _G_initialized = false;
|
|
||||||
LEAN_EXPORT lean_object* initialize_NNG_Levels_AdvAddition_Level__5(uint8_t builtin, lean_object* w) {
|
|
||||||
lean_object * res;
|
|
||||||
if (_G_initialized) return lean_io_result_mk_ok(lean_box(0));
|
|
||||||
_G_initialized = true;
|
|
||||||
res = initialize_Init(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_Metadata(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_MyNat_Addition(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
return lean_io_result_mk_ok(lean_box(0));
|
|
||||||
}
|
|
||||||
#ifdef __cplusplus
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
@ -1 +0,0 @@
|
|||||||
17123810049702200014
|
|
||||||
@ -1,37 +0,0 @@
|
|||||||
// Lean compiler output
|
|
||||||
// Module: NNG.Levels.AdvAddition.Level_6
|
|
||||||
// Imports: Init NNG.Metadata NNG.MyNat.Addition
|
|
||||||
#include <lean/lean.h>
|
|
||||||
#if defined(__clang__)
|
|
||||||
#pragma clang diagnostic ignored "-Wunused-parameter"
|
|
||||||
#pragma clang diagnostic ignored "-Wunused-label"
|
|
||||||
#elif defined(__GNUC__) && !defined(__CLANG__)
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-parameter"
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-label"
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-but-set-variable"
|
|
||||||
#endif
|
|
||||||
#ifdef __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif
|
|
||||||
lean_object* initialize_Init(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_Metadata(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_MyNat_Addition(uint8_t builtin, lean_object*);
|
|
||||||
static bool _G_initialized = false;
|
|
||||||
LEAN_EXPORT lean_object* initialize_NNG_Levels_AdvAddition_Level__6(uint8_t builtin, lean_object* w) {
|
|
||||||
lean_object * res;
|
|
||||||
if (_G_initialized) return lean_io_result_mk_ok(lean_box(0));
|
|
||||||
_G_initialized = true;
|
|
||||||
res = initialize_Init(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_Metadata(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_MyNat_Addition(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
return lean_io_result_mk_ok(lean_box(0));
|
|
||||||
}
|
|
||||||
#ifdef __cplusplus
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
@ -1 +0,0 @@
|
|||||||
9314509491732931710
|
|
||||||
@ -1,37 +0,0 @@
|
|||||||
// Lean compiler output
|
|
||||||
// Module: NNG.Levels.AdvAddition.Level_7
|
|
||||||
// Imports: Init NNG.Metadata NNG.MyNat.Addition
|
|
||||||
#include <lean/lean.h>
|
|
||||||
#if defined(__clang__)
|
|
||||||
#pragma clang diagnostic ignored "-Wunused-parameter"
|
|
||||||
#pragma clang diagnostic ignored "-Wunused-label"
|
|
||||||
#elif defined(__GNUC__) && !defined(__CLANG__)
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-parameter"
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-label"
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-but-set-variable"
|
|
||||||
#endif
|
|
||||||
#ifdef __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif
|
|
||||||
lean_object* initialize_Init(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_Metadata(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_MyNat_Addition(uint8_t builtin, lean_object*);
|
|
||||||
static bool _G_initialized = false;
|
|
||||||
LEAN_EXPORT lean_object* initialize_NNG_Levels_AdvAddition_Level__7(uint8_t builtin, lean_object* w) {
|
|
||||||
lean_object * res;
|
|
||||||
if (_G_initialized) return lean_io_result_mk_ok(lean_box(0));
|
|
||||||
_G_initialized = true;
|
|
||||||
res = initialize_Init(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_Metadata(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_MyNat_Addition(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
return lean_io_result_mk_ok(lean_box(0));
|
|
||||||
}
|
|
||||||
#ifdef __cplusplus
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
@ -1 +0,0 @@
|
|||||||
13172030794097753806
|
|
||||||
@ -1,37 +0,0 @@
|
|||||||
// Lean compiler output
|
|
||||||
// Module: NNG.Levels.AdvAddition.Level_8
|
|
||||||
// Imports: Init NNG.Metadata NNG.MyNat.Addition
|
|
||||||
#include <lean/lean.h>
|
|
||||||
#if defined(__clang__)
|
|
||||||
#pragma clang diagnostic ignored "-Wunused-parameter"
|
|
||||||
#pragma clang diagnostic ignored "-Wunused-label"
|
|
||||||
#elif defined(__GNUC__) && !defined(__CLANG__)
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-parameter"
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-label"
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-but-set-variable"
|
|
||||||
#endif
|
|
||||||
#ifdef __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif
|
|
||||||
lean_object* initialize_Init(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_Metadata(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_MyNat_Addition(uint8_t builtin, lean_object*);
|
|
||||||
static bool _G_initialized = false;
|
|
||||||
LEAN_EXPORT lean_object* initialize_NNG_Levels_AdvAddition_Level__8(uint8_t builtin, lean_object* w) {
|
|
||||||
lean_object * res;
|
|
||||||
if (_G_initialized) return lean_io_result_mk_ok(lean_box(0));
|
|
||||||
_G_initialized = true;
|
|
||||||
res = initialize_Init(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_Metadata(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_MyNat_Addition(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
return lean_io_result_mk_ok(lean_box(0));
|
|
||||||
}
|
|
||||||
#ifdef __cplusplus
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
@ -1 +0,0 @@
|
|||||||
10314181165617171139
|
|
||||||
@ -1,37 +0,0 @@
|
|||||||
// Lean compiler output
|
|
||||||
// Module: NNG.Levels.AdvAddition.Level_9
|
|
||||||
// Imports: Init NNG.Metadata NNG.MyNat.Addition
|
|
||||||
#include <lean/lean.h>
|
|
||||||
#if defined(__clang__)
|
|
||||||
#pragma clang diagnostic ignored "-Wunused-parameter"
|
|
||||||
#pragma clang diagnostic ignored "-Wunused-label"
|
|
||||||
#elif defined(__GNUC__) && !defined(__CLANG__)
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-parameter"
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-label"
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-but-set-variable"
|
|
||||||
#endif
|
|
||||||
#ifdef __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif
|
|
||||||
lean_object* initialize_Init(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_Metadata(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_MyNat_Addition(uint8_t builtin, lean_object*);
|
|
||||||
static bool _G_initialized = false;
|
|
||||||
LEAN_EXPORT lean_object* initialize_NNG_Levels_AdvAddition_Level__9(uint8_t builtin, lean_object* w) {
|
|
||||||
lean_object * res;
|
|
||||||
if (_G_initialized) return lean_io_result_mk_ok(lean_box(0));
|
|
||||||
_G_initialized = true;
|
|
||||||
res = initialize_Init(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_Metadata(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_MyNat_Addition(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
return lean_io_result_mk_ok(lean_box(0));
|
|
||||||
}
|
|
||||||
#ifdef __cplusplus
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
@ -1 +0,0 @@
|
|||||||
8205318715931175597
|
|
||||||
@ -1,45 +0,0 @@
|
|||||||
// Lean compiler output
|
|
||||||
// Module: NNG.Levels.AdvMultiplication
|
|
||||||
// Imports: Init NNG.Levels.AdvMultiplication.Level_1 NNG.Levels.AdvMultiplication.Level_2 NNG.Levels.AdvMultiplication.Level_3 NNG.Levels.AdvMultiplication.Level_4
|
|
||||||
#include <lean/lean.h>
|
|
||||||
#if defined(__clang__)
|
|
||||||
#pragma clang diagnostic ignored "-Wunused-parameter"
|
|
||||||
#pragma clang diagnostic ignored "-Wunused-label"
|
|
||||||
#elif defined(__GNUC__) && !defined(__CLANG__)
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-parameter"
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-label"
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-but-set-variable"
|
|
||||||
#endif
|
|
||||||
#ifdef __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif
|
|
||||||
lean_object* initialize_Init(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_Levels_AdvMultiplication_Level__1(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_Levels_AdvMultiplication_Level__2(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_Levels_AdvMultiplication_Level__3(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_Levels_AdvMultiplication_Level__4(uint8_t builtin, lean_object*);
|
|
||||||
static bool _G_initialized = false;
|
|
||||||
LEAN_EXPORT lean_object* initialize_NNG_Levels_AdvMultiplication(uint8_t builtin, lean_object* w) {
|
|
||||||
lean_object * res;
|
|
||||||
if (_G_initialized) return lean_io_result_mk_ok(lean_box(0));
|
|
||||||
_G_initialized = true;
|
|
||||||
res = initialize_Init(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_Levels_AdvMultiplication_Level__1(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_Levels_AdvMultiplication_Level__2(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_Levels_AdvMultiplication_Level__3(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_Levels_AdvMultiplication_Level__4(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
return lean_io_result_mk_ok(lean_box(0));
|
|
||||||
}
|
|
||||||
#ifdef __cplusplus
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
@ -1 +0,0 @@
|
|||||||
5627580921265871323
|
|
||||||
@ -1,37 +0,0 @@
|
|||||||
// Lean compiler output
|
|
||||||
// Module: NNG.Levels.AdvMultiplication.Level_1
|
|
||||||
// Imports: Init NNG.Metadata NNG.MyNat.Addition
|
|
||||||
#include <lean/lean.h>
|
|
||||||
#if defined(__clang__)
|
|
||||||
#pragma clang diagnostic ignored "-Wunused-parameter"
|
|
||||||
#pragma clang diagnostic ignored "-Wunused-label"
|
|
||||||
#elif defined(__GNUC__) && !defined(__CLANG__)
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-parameter"
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-label"
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-but-set-variable"
|
|
||||||
#endif
|
|
||||||
#ifdef __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif
|
|
||||||
lean_object* initialize_Init(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_Metadata(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_MyNat_Addition(uint8_t builtin, lean_object*);
|
|
||||||
static bool _G_initialized = false;
|
|
||||||
LEAN_EXPORT lean_object* initialize_NNG_Levels_AdvMultiplication_Level__1(uint8_t builtin, lean_object* w) {
|
|
||||||
lean_object * res;
|
|
||||||
if (_G_initialized) return lean_io_result_mk_ok(lean_box(0));
|
|
||||||
_G_initialized = true;
|
|
||||||
res = initialize_Init(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_Metadata(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_MyNat_Addition(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
return lean_io_result_mk_ok(lean_box(0));
|
|
||||||
}
|
|
||||||
#ifdef __cplusplus
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
@ -1 +0,0 @@
|
|||||||
5496292641504121726
|
|
||||||
@ -1,37 +0,0 @@
|
|||||||
// Lean compiler output
|
|
||||||
// Module: NNG.Levels.AdvMultiplication.Level_2
|
|
||||||
// Imports: Init NNG.Metadata NNG.MyNat.Addition
|
|
||||||
#include <lean/lean.h>
|
|
||||||
#if defined(__clang__)
|
|
||||||
#pragma clang diagnostic ignored "-Wunused-parameter"
|
|
||||||
#pragma clang diagnostic ignored "-Wunused-label"
|
|
||||||
#elif defined(__GNUC__) && !defined(__CLANG__)
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-parameter"
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-label"
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-but-set-variable"
|
|
||||||
#endif
|
|
||||||
#ifdef __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif
|
|
||||||
lean_object* initialize_Init(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_Metadata(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_MyNat_Addition(uint8_t builtin, lean_object*);
|
|
||||||
static bool _G_initialized = false;
|
|
||||||
LEAN_EXPORT lean_object* initialize_NNG_Levels_AdvMultiplication_Level__2(uint8_t builtin, lean_object* w) {
|
|
||||||
lean_object * res;
|
|
||||||
if (_G_initialized) return lean_io_result_mk_ok(lean_box(0));
|
|
||||||
_G_initialized = true;
|
|
||||||
res = initialize_Init(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_Metadata(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_MyNat_Addition(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
return lean_io_result_mk_ok(lean_box(0));
|
|
||||||
}
|
|
||||||
#ifdef __cplusplus
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
@ -1 +0,0 @@
|
|||||||
3065456568864785697
|
|
||||||
@ -1,37 +0,0 @@
|
|||||||
// Lean compiler output
|
|
||||||
// Module: NNG.Levels.AdvMultiplication.Level_3
|
|
||||||
// Imports: Init NNG.Metadata NNG.MyNat.Addition
|
|
||||||
#include <lean/lean.h>
|
|
||||||
#if defined(__clang__)
|
|
||||||
#pragma clang diagnostic ignored "-Wunused-parameter"
|
|
||||||
#pragma clang diagnostic ignored "-Wunused-label"
|
|
||||||
#elif defined(__GNUC__) && !defined(__CLANG__)
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-parameter"
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-label"
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-but-set-variable"
|
|
||||||
#endif
|
|
||||||
#ifdef __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif
|
|
||||||
lean_object* initialize_Init(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_Metadata(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_MyNat_Addition(uint8_t builtin, lean_object*);
|
|
||||||
static bool _G_initialized = false;
|
|
||||||
LEAN_EXPORT lean_object* initialize_NNG_Levels_AdvMultiplication_Level__3(uint8_t builtin, lean_object* w) {
|
|
||||||
lean_object * res;
|
|
||||||
if (_G_initialized) return lean_io_result_mk_ok(lean_box(0));
|
|
||||||
_G_initialized = true;
|
|
||||||
res = initialize_Init(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_Metadata(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_MyNat_Addition(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
return lean_io_result_mk_ok(lean_box(0));
|
|
||||||
}
|
|
||||||
#ifdef __cplusplus
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
@ -1 +0,0 @@
|
|||||||
11074674160667156308
|
|
||||||
@ -1,37 +0,0 @@
|
|||||||
// Lean compiler output
|
|
||||||
// Module: NNG.Levels.AdvMultiplication.Level_4
|
|
||||||
// Imports: Init NNG.Metadata NNG.MyNat.Addition
|
|
||||||
#include <lean/lean.h>
|
|
||||||
#if defined(__clang__)
|
|
||||||
#pragma clang diagnostic ignored "-Wunused-parameter"
|
|
||||||
#pragma clang diagnostic ignored "-Wunused-label"
|
|
||||||
#elif defined(__GNUC__) && !defined(__CLANG__)
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-parameter"
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-label"
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-but-set-variable"
|
|
||||||
#endif
|
|
||||||
#ifdef __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif
|
|
||||||
lean_object* initialize_Init(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_Metadata(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_MyNat_Addition(uint8_t builtin, lean_object*);
|
|
||||||
static bool _G_initialized = false;
|
|
||||||
LEAN_EXPORT lean_object* initialize_NNG_Levels_AdvMultiplication_Level__4(uint8_t builtin, lean_object* w) {
|
|
||||||
lean_object * res;
|
|
||||||
if (_G_initialized) return lean_io_result_mk_ok(lean_box(0));
|
|
||||||
_G_initialized = true;
|
|
||||||
res = initialize_Init(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_Metadata(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_MyNat_Addition(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
return lean_io_result_mk_ok(lean_box(0));
|
|
||||||
}
|
|
||||||
#ifdef __cplusplus
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
@ -1 +0,0 @@
|
|||||||
5171635906789131558
|
|
||||||
@ -1,69 +0,0 @@
|
|||||||
// Lean compiler output
|
|
||||||
// Module: NNG.Levels.AdvProposition
|
|
||||||
// Imports: Init NNG.Levels.AdvProposition.Level_1 NNG.Levels.AdvProposition.Level_2 NNG.Levels.AdvProposition.Level_3 NNG.Levels.AdvProposition.Level_4 NNG.Levels.AdvProposition.Level_5 NNG.Levels.AdvProposition.Level_6 NNG.Levels.AdvProposition.Level_7 NNG.Levels.AdvProposition.Level_8 NNG.Levels.AdvProposition.Level_9 NNG.Levels.AdvProposition.Level_10
|
|
||||||
#include <lean/lean.h>
|
|
||||||
#if defined(__clang__)
|
|
||||||
#pragma clang diagnostic ignored "-Wunused-parameter"
|
|
||||||
#pragma clang diagnostic ignored "-Wunused-label"
|
|
||||||
#elif defined(__GNUC__) && !defined(__CLANG__)
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-parameter"
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-label"
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-but-set-variable"
|
|
||||||
#endif
|
|
||||||
#ifdef __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif
|
|
||||||
lean_object* initialize_Init(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_Levels_AdvProposition_Level__1(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_Levels_AdvProposition_Level__2(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_Levels_AdvProposition_Level__3(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_Levels_AdvProposition_Level__4(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_Levels_AdvProposition_Level__5(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_Levels_AdvProposition_Level__6(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_Levels_AdvProposition_Level__7(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_Levels_AdvProposition_Level__8(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_Levels_AdvProposition_Level__9(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_Levels_AdvProposition_Level__10(uint8_t builtin, lean_object*);
|
|
||||||
static bool _G_initialized = false;
|
|
||||||
LEAN_EXPORT lean_object* initialize_NNG_Levels_AdvProposition(uint8_t builtin, lean_object* w) {
|
|
||||||
lean_object * res;
|
|
||||||
if (_G_initialized) return lean_io_result_mk_ok(lean_box(0));
|
|
||||||
_G_initialized = true;
|
|
||||||
res = initialize_Init(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_Levels_AdvProposition_Level__1(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_Levels_AdvProposition_Level__2(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_Levels_AdvProposition_Level__3(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_Levels_AdvProposition_Level__4(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_Levels_AdvProposition_Level__5(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_Levels_AdvProposition_Level__6(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_Levels_AdvProposition_Level__7(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_Levels_AdvProposition_Level__8(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_Levels_AdvProposition_Level__9(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_Levels_AdvProposition_Level__10(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
return lean_io_result_mk_ok(lean_box(0));
|
|
||||||
}
|
|
||||||
#ifdef __cplusplus
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
@ -1 +0,0 @@
|
|||||||
9478676650839776721
|
|
||||||
@ -1,37 +0,0 @@
|
|||||||
// Lean compiler output
|
|
||||||
// Module: NNG.Levels.AdvProposition.Level_1
|
|
||||||
// Imports: Init NNG.Metadata NNG.MyNat.Addition
|
|
||||||
#include <lean/lean.h>
|
|
||||||
#if defined(__clang__)
|
|
||||||
#pragma clang diagnostic ignored "-Wunused-parameter"
|
|
||||||
#pragma clang diagnostic ignored "-Wunused-label"
|
|
||||||
#elif defined(__GNUC__) && !defined(__CLANG__)
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-parameter"
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-label"
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-but-set-variable"
|
|
||||||
#endif
|
|
||||||
#ifdef __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif
|
|
||||||
lean_object* initialize_Init(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_Metadata(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_MyNat_Addition(uint8_t builtin, lean_object*);
|
|
||||||
static bool _G_initialized = false;
|
|
||||||
LEAN_EXPORT lean_object* initialize_NNG_Levels_AdvProposition_Level__1(uint8_t builtin, lean_object* w) {
|
|
||||||
lean_object * res;
|
|
||||||
if (_G_initialized) return lean_io_result_mk_ok(lean_box(0));
|
|
||||||
_G_initialized = true;
|
|
||||||
res = initialize_Init(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_Metadata(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_MyNat_Addition(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
return lean_io_result_mk_ok(lean_box(0));
|
|
||||||
}
|
|
||||||
#ifdef __cplusplus
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
@ -1 +0,0 @@
|
|||||||
13140666477521992594
|
|
||||||
@ -1,41 +0,0 @@
|
|||||||
// Lean compiler output
|
|
||||||
// Module: NNG.Levels.AdvProposition.Level_10
|
|
||||||
// Imports: Init NNG.Metadata NNG.MyNat.Addition Std.Tactic.RCases
|
|
||||||
#include <lean/lean.h>
|
|
||||||
#if defined(__clang__)
|
|
||||||
#pragma clang diagnostic ignored "-Wunused-parameter"
|
|
||||||
#pragma clang diagnostic ignored "-Wunused-label"
|
|
||||||
#elif defined(__GNUC__) && !defined(__CLANG__)
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-parameter"
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-label"
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-but-set-variable"
|
|
||||||
#endif
|
|
||||||
#ifdef __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif
|
|
||||||
lean_object* initialize_Init(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_Metadata(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_MyNat_Addition(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_Std_Tactic_RCases(uint8_t builtin, lean_object*);
|
|
||||||
static bool _G_initialized = false;
|
|
||||||
LEAN_EXPORT lean_object* initialize_NNG_Levels_AdvProposition_Level__10(uint8_t builtin, lean_object* w) {
|
|
||||||
lean_object * res;
|
|
||||||
if (_G_initialized) return lean_io_result_mk_ok(lean_box(0));
|
|
||||||
_G_initialized = true;
|
|
||||||
res = initialize_Init(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_Metadata(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_MyNat_Addition(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_Std_Tactic_RCases(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
return lean_io_result_mk_ok(lean_box(0));
|
|
||||||
}
|
|
||||||
#ifdef __cplusplus
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
@ -1 +0,0 @@
|
|||||||
18203712100298108367
|
|
||||||
@ -1,41 +0,0 @@
|
|||||||
// Lean compiler output
|
|
||||||
// Module: NNG.Levels.AdvProposition.Level_2
|
|
||||||
// Imports: Init NNG.Metadata NNG.MyNat.Addition Std.Tactic.RCases
|
|
||||||
#include <lean/lean.h>
|
|
||||||
#if defined(__clang__)
|
|
||||||
#pragma clang diagnostic ignored "-Wunused-parameter"
|
|
||||||
#pragma clang diagnostic ignored "-Wunused-label"
|
|
||||||
#elif defined(__GNUC__) && !defined(__CLANG__)
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-parameter"
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-label"
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-but-set-variable"
|
|
||||||
#endif
|
|
||||||
#ifdef __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif
|
|
||||||
lean_object* initialize_Init(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_Metadata(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_MyNat_Addition(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_Std_Tactic_RCases(uint8_t builtin, lean_object*);
|
|
||||||
static bool _G_initialized = false;
|
|
||||||
LEAN_EXPORT lean_object* initialize_NNG_Levels_AdvProposition_Level__2(uint8_t builtin, lean_object* w) {
|
|
||||||
lean_object * res;
|
|
||||||
if (_G_initialized) return lean_io_result_mk_ok(lean_box(0));
|
|
||||||
_G_initialized = true;
|
|
||||||
res = initialize_Init(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_Metadata(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_MyNat_Addition(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_Std_Tactic_RCases(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
return lean_io_result_mk_ok(lean_box(0));
|
|
||||||
}
|
|
||||||
#ifdef __cplusplus
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
@ -1 +0,0 @@
|
|||||||
10022829939796104452
|
|
||||||
@ -1,41 +0,0 @@
|
|||||||
// Lean compiler output
|
|
||||||
// Module: NNG.Levels.AdvProposition.Level_3
|
|
||||||
// Imports: Init NNG.Metadata NNG.MyNat.Addition Std.Tactic.RCases
|
|
||||||
#include <lean/lean.h>
|
|
||||||
#if defined(__clang__)
|
|
||||||
#pragma clang diagnostic ignored "-Wunused-parameter"
|
|
||||||
#pragma clang diagnostic ignored "-Wunused-label"
|
|
||||||
#elif defined(__GNUC__) && !defined(__CLANG__)
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-parameter"
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-label"
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-but-set-variable"
|
|
||||||
#endif
|
|
||||||
#ifdef __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif
|
|
||||||
lean_object* initialize_Init(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_Metadata(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_MyNat_Addition(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_Std_Tactic_RCases(uint8_t builtin, lean_object*);
|
|
||||||
static bool _G_initialized = false;
|
|
||||||
LEAN_EXPORT lean_object* initialize_NNG_Levels_AdvProposition_Level__3(uint8_t builtin, lean_object* w) {
|
|
||||||
lean_object * res;
|
|
||||||
if (_G_initialized) return lean_io_result_mk_ok(lean_box(0));
|
|
||||||
_G_initialized = true;
|
|
||||||
res = initialize_Init(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_Metadata(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_MyNat_Addition(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_Std_Tactic_RCases(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
return lean_io_result_mk_ok(lean_box(0));
|
|
||||||
}
|
|
||||||
#ifdef __cplusplus
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
@ -1 +0,0 @@
|
|||||||
1967301918816512059
|
|
||||||
@ -1,41 +0,0 @@
|
|||||||
// Lean compiler output
|
|
||||||
// Module: NNG.Levels.AdvProposition.Level_4
|
|
||||||
// Imports: Init NNG.Metadata NNG.MyNat.Addition Std.Tactic.RCases
|
|
||||||
#include <lean/lean.h>
|
|
||||||
#if defined(__clang__)
|
|
||||||
#pragma clang diagnostic ignored "-Wunused-parameter"
|
|
||||||
#pragma clang diagnostic ignored "-Wunused-label"
|
|
||||||
#elif defined(__GNUC__) && !defined(__CLANG__)
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-parameter"
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-label"
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-but-set-variable"
|
|
||||||
#endif
|
|
||||||
#ifdef __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif
|
|
||||||
lean_object* initialize_Init(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_Metadata(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_MyNat_Addition(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_Std_Tactic_RCases(uint8_t builtin, lean_object*);
|
|
||||||
static bool _G_initialized = false;
|
|
||||||
LEAN_EXPORT lean_object* initialize_NNG_Levels_AdvProposition_Level__4(uint8_t builtin, lean_object* w) {
|
|
||||||
lean_object * res;
|
|
||||||
if (_G_initialized) return lean_io_result_mk_ok(lean_box(0));
|
|
||||||
_G_initialized = true;
|
|
||||||
res = initialize_Init(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_Metadata(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_MyNat_Addition(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_Std_Tactic_RCases(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
return lean_io_result_mk_ok(lean_box(0));
|
|
||||||
}
|
|
||||||
#ifdef __cplusplus
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
@ -1 +0,0 @@
|
|||||||
16129653996493781623
|
|
||||||
@ -1,41 +0,0 @@
|
|||||||
// Lean compiler output
|
|
||||||
// Module: NNG.Levels.AdvProposition.Level_5
|
|
||||||
// Imports: Init NNG.Metadata NNG.MyNat.Addition Std.Tactic.RCases
|
|
||||||
#include <lean/lean.h>
|
|
||||||
#if defined(__clang__)
|
|
||||||
#pragma clang diagnostic ignored "-Wunused-parameter"
|
|
||||||
#pragma clang diagnostic ignored "-Wunused-label"
|
|
||||||
#elif defined(__GNUC__) && !defined(__CLANG__)
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-parameter"
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-label"
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-but-set-variable"
|
|
||||||
#endif
|
|
||||||
#ifdef __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif
|
|
||||||
lean_object* initialize_Init(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_Metadata(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_MyNat_Addition(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_Std_Tactic_RCases(uint8_t builtin, lean_object*);
|
|
||||||
static bool _G_initialized = false;
|
|
||||||
LEAN_EXPORT lean_object* initialize_NNG_Levels_AdvProposition_Level__5(uint8_t builtin, lean_object* w) {
|
|
||||||
lean_object * res;
|
|
||||||
if (_G_initialized) return lean_io_result_mk_ok(lean_box(0));
|
|
||||||
_G_initialized = true;
|
|
||||||
res = initialize_Init(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_Metadata(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_MyNat_Addition(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_Std_Tactic_RCases(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
return lean_io_result_mk_ok(lean_box(0));
|
|
||||||
}
|
|
||||||
#ifdef __cplusplus
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
@ -1 +0,0 @@
|
|||||||
16436512257645906503
|
|
||||||
@ -1,45 +0,0 @@
|
|||||||
// Lean compiler output
|
|
||||||
// Module: NNG.Levels.AdvProposition.Level_6
|
|
||||||
// Imports: Init NNG.Metadata NNG.MyNat.Addition Std.Tactic.RCases Mathlib.Tactic.LeftRight
|
|
||||||
#include <lean/lean.h>
|
|
||||||
#if defined(__clang__)
|
|
||||||
#pragma clang diagnostic ignored "-Wunused-parameter"
|
|
||||||
#pragma clang diagnostic ignored "-Wunused-label"
|
|
||||||
#elif defined(__GNUC__) && !defined(__CLANG__)
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-parameter"
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-label"
|
|
||||||
#pragma GCC diagnostic ignored "-Wunused-but-set-variable"
|
|
||||||
#endif
|
|
||||||
#ifdef __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif
|
|
||||||
lean_object* initialize_Init(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_Metadata(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_NNG_MyNat_Addition(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_Std_Tactic_RCases(uint8_t builtin, lean_object*);
|
|
||||||
lean_object* initialize_Mathlib_Tactic_LeftRight(uint8_t builtin, lean_object*);
|
|
||||||
static bool _G_initialized = false;
|
|
||||||
LEAN_EXPORT lean_object* initialize_NNG_Levels_AdvProposition_Level__6(uint8_t builtin, lean_object* w) {
|
|
||||||
lean_object * res;
|
|
||||||
if (_G_initialized) return lean_io_result_mk_ok(lean_box(0));
|
|
||||||
_G_initialized = true;
|
|
||||||
res = initialize_Init(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_Metadata(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_NNG_MyNat_Addition(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_Std_Tactic_RCases(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
res = initialize_Mathlib_Tactic_LeftRight(builtin, lean_io_mk_world());
|
|
||||||
if (lean_io_result_is_error(res)) return res;
|
|
||||||
lean_dec_ref(res);
|
|
||||||
return lean_io_result_mk_ok(lean_box(0));
|
|
||||||
}
|
|
||||||
#ifdef __cplusplus
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue